@opendatalabs/vana-sdk 2.3.0 → 3.0.1

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 (623) hide show
  1. package/README.md +76 -92
  2. package/dist/auth/errors.cjs +54 -0
  3. package/dist/auth/errors.cjs.map +1 -0
  4. package/dist/auth/errors.d.ts +26 -0
  5. package/dist/auth/errors.js +28 -0
  6. package/dist/auth/errors.js.map +1 -0
  7. package/dist/auth/pkce.cjs +100 -0
  8. package/dist/auth/pkce.cjs.map +1 -0
  9. package/dist/auth/pkce.d.ts +55 -0
  10. package/dist/auth/pkce.js +71 -0
  11. package/dist/auth/pkce.js.map +1 -0
  12. package/dist/auth/token-store.cjs +59 -0
  13. package/dist/auth/token-store.cjs.map +1 -0
  14. package/dist/auth/token-store.d.ts +61 -0
  15. package/dist/auth/token-store.js +35 -0
  16. package/dist/auth/token-store.js.map +1 -0
  17. package/dist/auth/web3-signed-builder.cjs +70 -0
  18. package/dist/auth/web3-signed-builder.cjs.map +1 -0
  19. package/dist/auth/web3-signed-builder.d.ts +47 -0
  20. package/dist/auth/web3-signed-builder.js +45 -0
  21. package/dist/auth/web3-signed-builder.js.map +1 -0
  22. package/dist/auth/web3-signed.cjs +150 -0
  23. package/dist/auth/web3-signed.cjs.map +1 -0
  24. package/dist/auth/web3-signed.d.ts +59 -0
  25. package/dist/auth/web3-signed.js +129 -0
  26. package/dist/auth/web3-signed.js.map +1 -0
  27. package/dist/chains/definitions.cjs +2 -6
  28. package/dist/chains/definitions.cjs.map +1 -1
  29. package/dist/chains/definitions.d.ts +1 -7
  30. package/dist/chains/definitions.js +2 -6
  31. package/dist/chains/definitions.js.map +1 -1
  32. package/dist/config/chains.d.ts +18 -0
  33. package/dist/config/contracts.config.cjs +7 -95
  34. package/dist/config/contracts.config.cjs.map +1 -1
  35. package/dist/config/contracts.config.d.ts +0 -54
  36. package/dist/config/contracts.config.js +6 -93
  37. package/dist/config/contracts.config.js.map +1 -1
  38. package/dist/config/default-services.cjs +0 -10
  39. package/dist/config/default-services.cjs.map +1 -1
  40. package/dist/config/default-services.d.ts +1 -20
  41. package/dist/config/default-services.js +0 -9
  42. package/dist/config/default-services.js.map +1 -1
  43. package/dist/crypto/ecies/interface.cjs +2 -0
  44. package/dist/crypto/ecies/interface.cjs.map +1 -1
  45. package/dist/crypto/ecies/interface.js +2 -0
  46. package/dist/crypto/ecies/interface.js.map +1 -1
  47. package/dist/crypto/envelope/openpgp.cjs +59 -0
  48. package/dist/crypto/envelope/openpgp.cjs.map +1 -0
  49. package/dist/crypto/envelope/openpgp.d.ts +28 -0
  50. package/dist/crypto/envelope/openpgp.js +24 -0
  51. package/dist/crypto/envelope/openpgp.js.map +1 -0
  52. package/dist/crypto/keys/derive.cjs +65 -0
  53. package/dist/crypto/keys/derive.cjs.map +1 -0
  54. package/dist/crypto/keys/derive.d.ts +45 -0
  55. package/dist/crypto/keys/derive.js +38 -0
  56. package/dist/crypto/keys/derive.js.map +1 -0
  57. package/dist/errors.cjs +10 -0
  58. package/dist/errors.cjs.map +1 -1
  59. package/dist/errors.js +10 -0
  60. package/dist/errors.js.map +1 -1
  61. package/dist/generated/abi/index.cjs +2 -37
  62. package/dist/generated/abi/index.cjs.map +1 -1
  63. package/dist/generated/abi/index.d.ts +2683 -9296
  64. package/dist/generated/abi/index.js +2 -29
  65. package/dist/generated/abi/index.js.map +1 -1
  66. package/dist/generated/addresses.cjs +5 -107
  67. package/dist/generated/addresses.cjs.map +1 -1
  68. package/dist/generated/addresses.d.ts +5 -99
  69. package/dist/generated/addresses.js +5 -105
  70. package/dist/generated/addresses.js.map +1 -1
  71. package/dist/index.browser.d.ts +24 -140
  72. package/dist/index.browser.js +32258 -114
  73. package/dist/index.browser.js.map +7 -1
  74. package/dist/index.node.cjs +32980 -160
  75. package/dist/index.node.cjs.map +7 -1
  76. package/dist/index.node.d.ts +23 -210
  77. package/dist/index.node.js +32884 -133
  78. package/dist/index.node.js.map +7 -1
  79. package/dist/protocol/data-file.cjs +56 -0
  80. package/dist/protocol/data-file.cjs.map +1 -0
  81. package/dist/protocol/data-file.d.ts +20 -0
  82. package/dist/protocol/data-file.js +30 -0
  83. package/dist/protocol/data-file.js.map +1 -0
  84. package/dist/protocol/eip712.cjs +123 -0
  85. package/dist/protocol/eip712.cjs.map +1 -0
  86. package/dist/protocol/eip712.d.ts +117 -0
  87. package/dist/protocol/eip712.js +90 -0
  88. package/dist/protocol/eip712.js.map +1 -0
  89. package/dist/protocol/gateway.cjs +226 -0
  90. package/dist/protocol/gateway.cjs.map +1 -0
  91. package/dist/protocol/gateway.d.ts +120 -0
  92. package/dist/protocol/gateway.js +202 -0
  93. package/dist/protocol/gateway.js.map +1 -0
  94. package/dist/protocol/grants.cjs +146 -0
  95. package/dist/protocol/grants.cjs.map +1 -0
  96. package/dist/protocol/grants.d.ts +31 -0
  97. package/dist/protocol/grants.js +123 -0
  98. package/dist/protocol/grants.js.map +1 -0
  99. package/dist/protocol/scopes.cjs +78 -0
  100. package/dist/protocol/scopes.cjs.map +1 -0
  101. package/dist/protocol/scopes.d.ts +13 -0
  102. package/dist/protocol/scopes.js +50 -0
  103. package/dist/protocol/scopes.js.map +1 -0
  104. package/dist/{types/atomicStore.cjs → storage/default.cjs} +9 -8
  105. package/dist/storage/default.cjs.map +1 -0
  106. package/dist/storage/default.d.ts +4 -0
  107. package/dist/storage/default.js +8 -0
  108. package/dist/storage/default.js.map +1 -0
  109. package/dist/storage/index.cjs +11 -2
  110. package/dist/storage/index.cjs.map +1 -1
  111. package/dist/storage/index.d.ts +9 -0
  112. package/dist/storage/index.js +7 -1
  113. package/dist/storage/index.js.map +1 -1
  114. package/dist/storage/providers/callback-storage.cjs +1 -0
  115. package/dist/storage/providers/callback-storage.cjs.map +1 -1
  116. package/dist/storage/providers/callback-storage.js +1 -0
  117. package/dist/storage/providers/callback-storage.js.map +1 -1
  118. package/dist/storage/providers/dropbox.cjs +1 -0
  119. package/dist/storage/providers/dropbox.cjs.map +1 -1
  120. package/dist/storage/providers/dropbox.js +1 -0
  121. package/dist/storage/providers/dropbox.js.map +1 -1
  122. package/dist/storage/providers/google-drive.cjs +1 -0
  123. package/dist/storage/providers/google-drive.cjs.map +1 -1
  124. package/dist/storage/providers/google-drive.js +1 -0
  125. package/dist/storage/providers/google-drive.js.map +1 -1
  126. package/dist/storage/providers/ipfs.cjs +1 -0
  127. package/dist/storage/providers/ipfs.cjs.map +1 -1
  128. package/dist/storage/providers/ipfs.js +1 -0
  129. package/dist/storage/providers/ipfs.js.map +1 -1
  130. package/dist/storage/providers/pinata.cjs +1 -0
  131. package/dist/storage/providers/pinata.cjs.map +1 -1
  132. package/dist/storage/providers/pinata.js +1 -0
  133. package/dist/storage/providers/pinata.js.map +1 -1
  134. package/dist/storage/providers/r2.cjs +376 -0
  135. package/dist/storage/providers/r2.cjs.map +1 -0
  136. package/dist/storage/providers/r2.d.ts +91 -0
  137. package/dist/storage/providers/r2.js +354 -0
  138. package/dist/storage/providers/r2.js.map +1 -0
  139. package/dist/storage/providers/vana-storage.cjs +251 -0
  140. package/dist/storage/providers/vana-storage.cjs.map +1 -0
  141. package/dist/storage/providers/vana-storage.d.ts +100 -0
  142. package/dist/storage/providers/vana-storage.js +231 -0
  143. package/dist/storage/providers/vana-storage.js.map +1 -0
  144. package/dist/types/config.cjs +0 -34
  145. package/dist/types/config.cjs.map +1 -1
  146. package/dist/types/config.d.ts +1 -607
  147. package/dist/types/config.js +0 -22
  148. package/dist/types/config.js.map +1 -1
  149. package/dist/types/contracts.cjs.map +1 -1
  150. package/dist/types/contracts.d.ts +1 -1
  151. package/dist/types/index.cjs +2 -33
  152. package/dist/types/index.cjs.map +1 -1
  153. package/dist/types/index.d.ts +2 -33
  154. package/dist/types/index.js +1 -35
  155. package/dist/types/index.js.map +1 -1
  156. package/dist/types/ps-errors.cjs +91 -0
  157. package/dist/types/ps-errors.cjs.map +1 -0
  158. package/dist/types/ps-errors.d.ts +26 -0
  159. package/dist/types/ps-errors.js +66 -0
  160. package/dist/types/ps-errors.js.map +1 -0
  161. package/dist/types.cjs.map +1 -1
  162. package/dist/types.d.ts +0 -29
  163. package/dist/types.js.map +1 -1
  164. package/package.json +7 -25
  165. package/dist/client/enhancedResponse.cjs +0 -164
  166. package/dist/client/enhancedResponse.cjs.map +0 -1
  167. package/dist/client/enhancedResponse.d.ts +0 -120
  168. package/dist/client/enhancedResponse.js +0 -138
  169. package/dist/client/enhancedResponse.js.map +0 -1
  170. package/dist/controllers/__tests__/data-consistency-integration.test.d.ts +0 -7
  171. package/dist/controllers/base.cjs +0 -116
  172. package/dist/controllers/base.cjs.map +0 -1
  173. package/dist/controllers/base.d.ts +0 -94
  174. package/dist/controllers/base.js +0 -92
  175. package/dist/controllers/base.js.map +0 -1
  176. package/dist/controllers/data.cjs +0 -2633
  177. package/dist/controllers/data.cjs.map +0 -1
  178. package/dist/controllers/data.d.ts +0 -1067
  179. package/dist/controllers/data.js +0 -2626
  180. package/dist/controllers/data.js.map +0 -1
  181. package/dist/controllers/operations.cjs +0 -430
  182. package/dist/controllers/operations.cjs.map +0 -1
  183. package/dist/controllers/operations.d.ts +0 -229
  184. package/dist/controllers/operations.js +0 -406
  185. package/dist/controllers/operations.js.map +0 -1
  186. package/dist/controllers/permissions.cjs +0 -4368
  187. package/dist/controllers/permissions.cjs.map +0 -1
  188. package/dist/controllers/permissions.d.ts +0 -1411
  189. package/dist/controllers/permissions.js +0 -4344
  190. package/dist/controllers/permissions.js.map +0 -1
  191. package/dist/controllers/protocol.cjs +0 -183
  192. package/dist/controllers/protocol.cjs.map +0 -1
  193. package/dist/controllers/protocol.d.ts +0 -138
  194. package/dist/controllers/protocol.js +0 -163
  195. package/dist/controllers/protocol.js.map +0 -1
  196. package/dist/controllers/schemas.cjs +0 -678
  197. package/dist/controllers/schemas.cjs.map +0 -1
  198. package/dist/controllers/schemas.d.ts +0 -293
  199. package/dist/controllers/schemas.js +0 -654
  200. package/dist/controllers/schemas.js.map +0 -1
  201. package/dist/controllers/server.cjs +0 -643
  202. package/dist/controllers/server.cjs.map +0 -1
  203. package/dist/controllers/server.d.ts +0 -322
  204. package/dist/controllers/server.js +0 -624
  205. package/dist/controllers/server.js.map +0 -1
  206. package/dist/controllers/staking.cjs +0 -626
  207. package/dist/controllers/staking.cjs.map +0 -1
  208. package/dist/controllers/staking.d.ts +0 -457
  209. package/dist/controllers/staking.js +0 -602
  210. package/dist/controllers/staking.js.map +0 -1
  211. package/dist/core/__tests__/pollingManager.test.d.ts +0 -4
  212. package/dist/core/apiClient.cjs +0 -378
  213. package/dist/core/apiClient.cjs.map +0 -1
  214. package/dist/core/apiClient.d.ts +0 -286
  215. package/dist/core/apiClient.js +0 -359
  216. package/dist/core/apiClient.js.map +0 -1
  217. package/dist/core/generics.cjs +0 -417
  218. package/dist/core/generics.cjs.map +0 -1
  219. package/dist/core/generics.d.ts +0 -205
  220. package/dist/core/generics.js +0 -386
  221. package/dist/core/generics.js.map +0 -1
  222. package/dist/core/health.cjs +0 -289
  223. package/dist/core/health.cjs.map +0 -1
  224. package/dist/core/health.d.ts +0 -143
  225. package/dist/core/health.js +0 -265
  226. package/dist/core/health.js.map +0 -1
  227. package/dist/core/inMemoryNonceManager.cjs +0 -138
  228. package/dist/core/inMemoryNonceManager.cjs.map +0 -1
  229. package/dist/core/inMemoryNonceManager.d.ts +0 -69
  230. package/dist/core/inMemoryNonceManager.js +0 -114
  231. package/dist/core/inMemoryNonceManager.js.map +0 -1
  232. package/dist/core/nonceManager.cjs +0 -304
  233. package/dist/core/nonceManager.cjs.map +0 -1
  234. package/dist/core/nonceManager.d.ts +0 -116
  235. package/dist/core/nonceManager.js +0 -280
  236. package/dist/core/nonceManager.js.map +0 -1
  237. package/dist/core/pollingManager.cjs +0 -292
  238. package/dist/core/pollingManager.cjs.map +0 -1
  239. package/dist/core/pollingManager.d.ts +0 -120
  240. package/dist/core/pollingManager.js +0 -268
  241. package/dist/core/pollingManager.js.map +0 -1
  242. package/dist/core.cjs +0 -781
  243. package/dist/core.cjs.map +0 -1
  244. package/dist/core.d.ts +0 -496
  245. package/dist/core.js +0 -756
  246. package/dist/core.js.map +0 -1
  247. package/dist/diagnostics.cjs +0 -37
  248. package/dist/diagnostics.cjs.map +0 -1
  249. package/dist/diagnostics.d.ts +0 -24
  250. package/dist/diagnostics.js +0 -13
  251. package/dist/diagnostics.js.map +0 -1
  252. package/dist/generated/abi/DLPPerformanceImplementation.cjs +0 -1202
  253. package/dist/generated/abi/DLPPerformanceImplementation.cjs.map +0 -1
  254. package/dist/generated/abi/DLPPerformanceImplementation.d.ts +0 -914
  255. package/dist/generated/abi/DLPPerformanceImplementation.js +0 -1178
  256. package/dist/generated/abi/DLPPerformanceImplementation.js.map +0 -1
  257. package/dist/generated/abi/DLPRewardDeployerImplementation.cjs +0 -1112
  258. package/dist/generated/abi/DLPRewardDeployerImplementation.cjs.map +0 -1
  259. package/dist/generated/abi/DLPRewardDeployerImplementation.d.ts +0 -840
  260. package/dist/generated/abi/DLPRewardDeployerImplementation.js +0 -1088
  261. package/dist/generated/abi/DLPRewardDeployerImplementation.js.map +0 -1
  262. package/dist/generated/abi/DLPRewardDeployerTreasuryImplementation.cjs +0 -612
  263. package/dist/generated/abi/DLPRewardDeployerTreasuryImplementation.cjs.map +0 -1
  264. package/dist/generated/abi/DLPRewardDeployerTreasuryImplementation.d.ts +0 -451
  265. package/dist/generated/abi/DLPRewardDeployerTreasuryImplementation.js +0 -588
  266. package/dist/generated/abi/DLPRewardDeployerTreasuryImplementation.js.map +0 -1
  267. package/dist/generated/abi/DLPRewardSwapImplementation.cjs +0 -939
  268. package/dist/generated/abi/DLPRewardSwapImplementation.cjs.map +0 -1
  269. package/dist/generated/abi/DLPRewardSwapImplementation.d.ts +0 -705
  270. package/dist/generated/abi/DLPRewardSwapImplementation.js +0 -915
  271. package/dist/generated/abi/DLPRewardSwapImplementation.js.map +0 -1
  272. package/dist/generated/abi/DLPRootImplementation.cjs +0 -1644
  273. package/dist/generated/abi/DLPRootImplementation.cjs.map +0 -1
  274. package/dist/generated/abi/DLPRootImplementation.d.ts +0 -1246
  275. package/dist/generated/abi/DLPRootImplementation.js +0 -1620
  276. package/dist/generated/abi/DLPRootImplementation.js.map +0 -1
  277. package/dist/generated/abi/DataLiquidityPoolImplementation.cjs +0 -985
  278. package/dist/generated/abi/DataLiquidityPoolImplementation.cjs.map +0 -1
  279. package/dist/generated/abi/DataLiquidityPoolImplementation.d.ts +0 -735
  280. package/dist/generated/abi/DataLiquidityPoolImplementation.js +0 -961
  281. package/dist/generated/abi/DataLiquidityPoolImplementation.js.map +0 -1
  282. package/dist/generated/abi/SwapHelperImplementation.cjs +0 -976
  283. package/dist/generated/abi/SwapHelperImplementation.cjs.map +0 -1
  284. package/dist/generated/abi/SwapHelperImplementation.d.ts +0 -728
  285. package/dist/generated/abi/SwapHelperImplementation.js +0 -952
  286. package/dist/generated/abi/SwapHelperImplementation.js.map +0 -1
  287. package/dist/generated/abi/TeePoolImplementation.cjs +0 -1313
  288. package/dist/generated/abi/TeePoolImplementation.cjs.map +0 -1
  289. package/dist/generated/abi/TeePoolImplementation.d.ts +0 -992
  290. package/dist/generated/abi/TeePoolImplementation.js +0 -1289
  291. package/dist/generated/abi/TeePoolImplementation.js.map +0 -1
  292. package/dist/generated/event-types.cjs +0 -17
  293. package/dist/generated/event-types.cjs.map +0 -1
  294. package/dist/generated/event-types.d.ts +0 -816
  295. package/dist/generated/event-types.js +0 -1
  296. package/dist/generated/event-types.js.map +0 -1
  297. package/dist/generated/eventRegistry.cjs +0 -4512
  298. package/dist/generated/eventRegistry.cjs.map +0 -1
  299. package/dist/generated/eventRegistry.d.ts +0 -14
  300. package/dist/generated/eventRegistry.js +0 -4487
  301. package/dist/generated/eventRegistry.js.map +0 -1
  302. package/dist/generated/server/server-exports.cjs +0 -45
  303. package/dist/generated/server/server-exports.cjs.map +0 -1
  304. package/dist/generated/server/server-exports.d.ts +0 -36
  305. package/dist/generated/server/server-exports.js +0 -19
  306. package/dist/generated/server/server-exports.js.map +0 -1
  307. package/dist/generated/server/server.cjs +0 -17
  308. package/dist/generated/server/server.cjs.map +0 -1
  309. package/dist/generated/server/server.d.ts +0 -907
  310. package/dist/generated/server/server.js +0 -1
  311. package/dist/generated/server/server.js.map +0 -1
  312. package/dist/generated/subgraph.cjs +0 -1440
  313. package/dist/generated/subgraph.cjs.map +0 -1
  314. package/dist/generated/subgraph.d.ts +0 -6113
  315. package/dist/generated/subgraph.js +0 -1404
  316. package/dist/generated/subgraph.js.map +0 -1
  317. package/dist/lib/__tests__/redisAtomicStore.test.d.ts +0 -1
  318. package/dist/lib/redisAtomicStore.cjs +0 -201
  319. package/dist/lib/redisAtomicStore.cjs.map +0 -1
  320. package/dist/lib/redisAtomicStore.d.ts +0 -120
  321. package/dist/lib/redisAtomicStore.js +0 -177
  322. package/dist/lib/redisAtomicStore.js.map +0 -1
  323. package/dist/server/relayerHandler.cjs +0 -452
  324. package/dist/server/relayerHandler.cjs.map +0 -1
  325. package/dist/server/relayerHandler.d.ts +0 -69
  326. package/dist/server/relayerHandler.js +0 -428
  327. package/dist/server/relayerHandler.js.map +0 -1
  328. package/dist/tests/abi.test.d.ts +0 -1
  329. package/dist/tests/chains-definitions.test.d.ts +0 -1
  330. package/dist/tests/core-encryption.test.d.ts +0 -1
  331. package/dist/tests/core-extended.test.d.ts +0 -1
  332. package/dist/tests/core-generics-coverage.test.d.ts +0 -1
  333. package/dist/tests/coverage-boost.test.d.ts +0 -1
  334. package/dist/tests/crypto-cross-platform-compatibility.test.d.ts +0 -1
  335. package/dist/tests/data-addfile-permissions-schema.test.d.ts +0 -1
  336. package/dist/tests/data-additional-methods.test.d.ts +0 -1
  337. package/dist/tests/data-controller-edge-cases.test.d.ts +0 -1
  338. package/dist/tests/data-ipfs-gateways.test.d.ts +0 -1
  339. package/dist/tests/data-relayer.test.d.ts +0 -1
  340. package/dist/tests/data-schema-validation.test.d.ts +0 -1
  341. package/dist/tests/data-simple-methods.test.d.ts +0 -1
  342. package/dist/tests/data-upload-owner-validation.test.d.ts +0 -1
  343. package/dist/tests/data.test.d.ts +0 -1
  344. package/dist/tests/demo-integration.test.d.ts +0 -1
  345. package/dist/tests/demo-trusted-server-integration.test.d.ts +0 -1
  346. package/dist/tests/download-relayer.test.d.ts +0 -1
  347. package/dist/tests/dual-mode-permissions.test.d.ts +0 -1
  348. package/dist/tests/dual-mode-trusted-servers.test.d.ts +0 -1
  349. package/dist/tests/encryption-correct-implementation.test.d.ts +0 -1
  350. package/dist/tests/encryption-coverage.test.d.ts +0 -1
  351. package/dist/tests/encryption-edge-cases.test.d.ts +0 -1
  352. package/dist/tests/encryption-utils-updated.test.d.ts +0 -1
  353. package/dist/tests/errors-coverage.test.d.ts +0 -1
  354. package/dist/tests/factories/mockFactory.d.ts +0 -316
  355. package/dist/tests/fakes/FakeStorageManager.d.ts +0 -200
  356. package/dist/tests/fakes/FakeStorageManager.test.d.ts +0 -1
  357. package/dist/tests/fakes/FakeWaitForTransactionEvents.d.ts +0 -170
  358. package/dist/tests/fakes/FakeWaitForTransactionEvents.test.d.ts +0 -1
  359. package/dist/tests/fakes/fake-pgp-port.d.ts +0 -13
  360. package/dist/tests/grantValidation-edge-cases.test.d.ts +0 -1
  361. package/dist/tests/grantValidation-unreachable-branch.test.d.ts +0 -1
  362. package/dist/tests/helper-methods.test.d.ts +0 -1
  363. package/dist/tests/helpers/typedMocks.d.ts +0 -64
  364. package/dist/tests/index-browser.test.d.ts +0 -1
  365. package/dist/tests/index-node.test.d.ts +0 -1
  366. package/dist/tests/index.test.d.ts +0 -1
  367. package/dist/tests/mocks/platformAdapter.d.ts +0 -12
  368. package/dist/tests/new-permissions-methods.test.d.ts +0 -1
  369. package/dist/tests/no-buffer-browser.test.d.ts +0 -1
  370. package/dist/tests/permissions-grantee.test.d.ts +0 -1
  371. package/dist/tests/permissions-revoke-relayer.test.d.ts +0 -1
  372. package/dist/tests/permissions-schema-validation.test.d.ts +0 -1
  373. package/dist/tests/permissions-server-files.test.d.ts +0 -1
  374. package/dist/tests/permissions-transaction-options.test.d.ts +0 -1
  375. package/dist/tests/permissions-trust-servers.test.d.ts +0 -1
  376. package/dist/tests/permissions.test.d.ts +0 -1
  377. package/dist/tests/personal.test.d.ts +0 -1
  378. package/dist/tests/platform-browser.test.d.ts +0 -1
  379. package/dist/tests/platform-crypto-expanded.test.d.ts +0 -1
  380. package/dist/tests/platform-crypto.test.d.ts +0 -1
  381. package/dist/tests/platform-index.test.d.ts +0 -1
  382. package/dist/tests/platform-node.test.d.ts +0 -1
  383. package/dist/tests/platform-shared-utils.test.d.ts +0 -1
  384. package/dist/tests/platform-updated.test.d.ts +0 -1
  385. package/dist/tests/protocol-additional-methods.test.d.ts +0 -1
  386. package/dist/tests/protocol.test.d.ts +0 -1
  387. package/dist/tests/read-only-mode.test.d.ts +0 -1
  388. package/dist/tests/relayer-integration.test.d.ts +0 -1
  389. package/dist/tests/relayer-unified.test.d.ts +0 -1
  390. package/dist/tests/schemas.test.d.ts +0 -1
  391. package/dist/tests/server-relayer-handler.test.d.ts +0 -1
  392. package/dist/tests/signatureFormatter.test.d.ts +0 -1
  393. package/dist/tests/staking.test.d.ts +0 -1
  394. package/dist/tests/trusted-server-queries.test.d.ts +0 -1
  395. package/dist/tests/typedDataConverter.test.d.ts +0 -1
  396. package/dist/tests/types-contracts.test.d.ts +0 -1
  397. package/dist/tests/types-data.test.d.ts +0 -1
  398. package/dist/tests/types-external-apis.test.d.ts +0 -1
  399. package/dist/tests/types-generics.test.d.ts +0 -1
  400. package/dist/tests/types-permissions.test.d.ts +0 -1
  401. package/dist/tests/types-upload-params.test.d.ts +0 -1
  402. package/dist/tests/types.test.d.ts +0 -1
  403. package/dist/tests/utils-formatters.test.d.ts +0 -1
  404. package/dist/tests/utils-grantFiles-edge-cases.test.d.ts +0 -1
  405. package/dist/tests/utils-grantFiles-validation.test.d.ts +0 -1
  406. package/dist/tests/utils-grantFiles.test.d.ts +0 -1
  407. package/dist/tests/utils-grantValidation-consolidated.test.d.ts +0 -1
  408. package/dist/tests/utils-grants.test.d.ts +0 -1
  409. package/dist/tests/utils-ipfs-additional.test.d.ts +0 -1
  410. package/dist/tests/utils-ipfs.test.d.ts +0 -4
  411. package/dist/tests/utils-schemaValidation.test.d.ts +0 -1
  412. package/dist/tests/vana.test.d.ts +0 -1
  413. package/dist/tests/wallet-crypto-compatibility.test.d.ts +0 -1
  414. package/dist/types/atomicStore.cjs.map +0 -1
  415. package/dist/types/atomicStore.d.ts +0 -236
  416. package/dist/types/atomicStore.js +0 -7
  417. package/dist/types/atomicStore.js.map +0 -1
  418. package/dist/types/blockchain.cjs +0 -17
  419. package/dist/types/blockchain.cjs.map +0 -1
  420. package/dist/types/blockchain.d.ts +0 -85
  421. package/dist/types/blockchain.js +0 -1
  422. package/dist/types/blockchain.js.map +0 -1
  423. package/dist/types/controller-context.cjs +0 -17
  424. package/dist/types/controller-context.cjs.map +0 -1
  425. package/dist/types/controller-context.d.ts +0 -68
  426. package/dist/types/controller-context.js +0 -1
  427. package/dist/types/controller-context.js.map +0 -1
  428. package/dist/types/data.cjs +0 -17
  429. package/dist/types/data.cjs.map +0 -1
  430. package/dist/types/data.d.ts +0 -763
  431. package/dist/types/data.js +0 -1
  432. package/dist/types/data.js.map +0 -1
  433. package/dist/types/external-apis.cjs +0 -61
  434. package/dist/types/external-apis.cjs.map +0 -1
  435. package/dist/types/external-apis.d.ts +0 -184
  436. package/dist/types/external-apis.js +0 -34
  437. package/dist/types/external-apis.js.map +0 -1
  438. package/dist/types/generics.cjs +0 -17
  439. package/dist/types/generics.cjs.map +0 -1
  440. package/dist/types/generics.d.ts +0 -518
  441. package/dist/types/generics.js +0 -1
  442. package/dist/types/generics.js.map +0 -1
  443. package/dist/types/operationStore.cjs +0 -17
  444. package/dist/types/operationStore.cjs.map +0 -1
  445. package/dist/types/operationStore.d.ts +0 -171
  446. package/dist/types/operationStore.js +0 -1
  447. package/dist/types/operationStore.js.map +0 -1
  448. package/dist/types/operations.cjs +0 -53
  449. package/dist/types/operations.cjs.map +0 -1
  450. package/dist/types/operations.d.ts +0 -204
  451. package/dist/types/operations.js +0 -26
  452. package/dist/types/operations.js.map +0 -1
  453. package/dist/types/options.cjs +0 -17
  454. package/dist/types/options.cjs.map +0 -1
  455. package/dist/types/options.d.ts +0 -308
  456. package/dist/types/options.js +0 -1
  457. package/dist/types/options.js.map +0 -1
  458. package/dist/types/permissions.cjs +0 -17
  459. package/dist/types/permissions.cjs.map +0 -1
  460. package/dist/types/permissions.d.ts +0 -955
  461. package/dist/types/permissions.js +0 -1
  462. package/dist/types/permissions.js.map +0 -1
  463. package/dist/types/personal.cjs +0 -17
  464. package/dist/types/personal.cjs.map +0 -1
  465. package/dist/types/personal.d.ts +0 -174
  466. package/dist/types/personal.js +0 -1
  467. package/dist/types/personal.js.map +0 -1
  468. package/dist/types/relayer.cjs +0 -17
  469. package/dist/types/relayer.cjs.map +0 -1
  470. package/dist/types/relayer.d.ts +0 -552
  471. package/dist/types/relayer.js +0 -1
  472. package/dist/types/relayer.js.map +0 -1
  473. package/dist/types/transactionResults.cjs +0 -17
  474. package/dist/types/transactionResults.cjs.map +0 -1
  475. package/dist/types/transactionResults.d.ts +0 -193
  476. package/dist/types/transactionResults.js +0 -1
  477. package/dist/types/transactionResults.js.map +0 -1
  478. package/dist/types/utils.cjs +0 -17
  479. package/dist/types/utils.cjs.map +0 -1
  480. package/dist/types/utils.d.ts +0 -771
  481. package/dist/types/utils.js +0 -1
  482. package/dist/types/utils.js.map +0 -1
  483. package/dist/utils/__tests__/chainQuery.test.d.ts +0 -1
  484. package/dist/utils/__tests__/parseTransaction.test.d.ts +0 -1
  485. package/dist/utils/__tests__/pojo-serialization.test.d.ts +0 -1
  486. package/dist/utils/__tests__/signatureCache.test.d.ts +0 -1
  487. package/dist/utils/__tests__/subgraphConsistency.test.d.ts +0 -4
  488. package/dist/utils/__tests__/subgraphPagination.test.d.ts +0 -4
  489. package/dist/utils/__tests__/transaction-edge-cases.test.d.ts +0 -1
  490. package/dist/utils/__tests__/transactionHelpers.test.d.ts +0 -1
  491. package/dist/utils/__tests__/urlResolver.test.d.ts +0 -4
  492. package/dist/utils/blockchain/registry.cjs +0 -81
  493. package/dist/utils/blockchain/registry.cjs.map +0 -1
  494. package/dist/utils/blockchain/registry.d.ts +0 -32
  495. package/dist/utils/blockchain/registry.js +0 -56
  496. package/dist/utils/blockchain/registry.js.map +0 -1
  497. package/dist/utils/blockchain/registry.test.d.ts +0 -1
  498. package/dist/utils/chainQuery.cjs +0 -107
  499. package/dist/utils/chainQuery.cjs.map +0 -1
  500. package/dist/utils/chainQuery.d.ts +0 -31
  501. package/dist/utils/chainQuery.js +0 -82
  502. package/dist/utils/chainQuery.js.map +0 -1
  503. package/dist/utils/download.cjs +0 -69
  504. package/dist/utils/download.cjs.map +0 -1
  505. package/dist/utils/download.d.ts +0 -40
  506. package/dist/utils/download.js +0 -45
  507. package/dist/utils/download.js.map +0 -1
  508. package/dist/utils/encryption.cjs +0 -176
  509. package/dist/utils/encryption.cjs.map +0 -1
  510. package/dist/utils/encryption.d.ts +0 -271
  511. package/dist/utils/encryption.js +0 -142
  512. package/dist/utils/encryption.js.map +0 -1
  513. package/dist/utils/formatters.cjs +0 -55
  514. package/dist/utils/formatters.cjs.map +0 -1
  515. package/dist/utils/formatters.d.ts +0 -118
  516. package/dist/utils/formatters.js +0 -28
  517. package/dist/utils/formatters.js.map +0 -1
  518. package/dist/utils/grantFiles.cjs +0 -181
  519. package/dist/utils/grantFiles.cjs.map +0 -1
  520. package/dist/utils/grantFiles.d.ts +0 -172
  521. package/dist/utils/grantFiles.js +0 -143
  522. package/dist/utils/grantFiles.js.map +0 -1
  523. package/dist/utils/grantValidation.cjs +0 -243
  524. package/dist/utils/grantValidation.cjs.map +0 -1
  525. package/dist/utils/grantValidation.d.ts +0 -226
  526. package/dist/utils/grantValidation.js +0 -201
  527. package/dist/utils/grantValidation.js.map +0 -1
  528. package/dist/utils/grants.cjs +0 -108
  529. package/dist/utils/grants.cjs.map +0 -1
  530. package/dist/utils/grants.d.ts +0 -148
  531. package/dist/utils/grants.js +0 -82
  532. package/dist/utils/grants.js.map +0 -1
  533. package/dist/utils/ipfs.cjs +0 -128
  534. package/dist/utils/ipfs.cjs.map +0 -1
  535. package/dist/utils/ipfs.d.ts +0 -88
  536. package/dist/utils/ipfs.js +0 -97
  537. package/dist/utils/ipfs.js.map +0 -1
  538. package/dist/utils/multicall.cjs +0 -233
  539. package/dist/utils/multicall.cjs.map +0 -1
  540. package/dist/utils/multicall.d.ts +0 -126
  541. package/dist/utils/multicall.js +0 -208
  542. package/dist/utils/multicall.js.map +0 -1
  543. package/dist/utils/parseTransactionPojo.cjs +0 -87
  544. package/dist/utils/parseTransactionPojo.cjs.map +0 -1
  545. package/dist/utils/parseTransactionPojo.d.ts +0 -31
  546. package/dist/utils/parseTransactionPojo.js +0 -63
  547. package/dist/utils/parseTransactionPojo.js.map +0 -1
  548. package/dist/utils/schemaValidation.cjs +0 -258
  549. package/dist/utils/schemaValidation.cjs.map +0 -1
  550. package/dist/utils/schemaValidation.d.ts +0 -168
  551. package/dist/utils/schemaValidation.js +0 -219
  552. package/dist/utils/schemaValidation.js.map +0 -1
  553. package/dist/utils/signatureCache.cjs +0 -192
  554. package/dist/utils/signatureCache.cjs.map +0 -1
  555. package/dist/utils/signatureCache.d.ts +0 -172
  556. package/dist/utils/signatureCache.js +0 -167
  557. package/dist/utils/signatureCache.js.map +0 -1
  558. package/dist/utils/signatureFormatter.cjs +0 -42
  559. package/dist/utils/signatureFormatter.cjs.map +0 -1
  560. package/dist/utils/signatureFormatter.d.ts +0 -36
  561. package/dist/utils/signatureFormatter.js +0 -18
  562. package/dist/utils/signatureFormatter.js.map +0 -1
  563. package/dist/utils/subgraphConsistency.cjs +0 -184
  564. package/dist/utils/subgraphConsistency.cjs.map +0 -1
  565. package/dist/utils/subgraphConsistency.d.ts +0 -65
  566. package/dist/utils/subgraphConsistency.js +0 -155
  567. package/dist/utils/subgraphConsistency.js.map +0 -1
  568. package/dist/utils/subgraphMetaCache.cjs +0 -101
  569. package/dist/utils/subgraphMetaCache.cjs.map +0 -1
  570. package/dist/utils/subgraphMetaCache.d.ts +0 -56
  571. package/dist/utils/subgraphMetaCache.js +0 -76
  572. package/dist/utils/subgraphMetaCache.js.map +0 -1
  573. package/dist/utils/subgraphPagination.cjs +0 -104
  574. package/dist/utils/subgraphPagination.cjs.map +0 -1
  575. package/dist/utils/subgraphPagination.d.ts +0 -78
  576. package/dist/utils/subgraphPagination.js +0 -78
  577. package/dist/utils/subgraphPagination.js.map +0 -1
  578. package/dist/utils/tests/multicall.test.d.ts +0 -1
  579. package/dist/utils/transactionHelpers.cjs +0 -54
  580. package/dist/utils/transactionHelpers.cjs.map +0 -1
  581. package/dist/utils/transactionHelpers.d.ts +0 -80
  582. package/dist/utils/transactionHelpers.js +0 -29
  583. package/dist/utils/transactionHelpers.js.map +0 -1
  584. package/dist/utils/typeGuards.cjs +0 -109
  585. package/dist/utils/typeGuards.cjs.map +0 -1
  586. package/dist/utils/typeGuards.d.ts +0 -138
  587. package/dist/utils/typeGuards.js +0 -74
  588. package/dist/utils/typeGuards.js.map +0 -1
  589. package/dist/utils/typedDataConverter.cjs +0 -43
  590. package/dist/utils/typedDataConverter.cjs.map +0 -1
  591. package/dist/utils/typedDataConverter.d.ts +0 -46
  592. package/dist/utils/typedDataConverter.js +0 -19
  593. package/dist/utils/typedDataConverter.js.map +0 -1
  594. package/dist/utils/urlResolver.cjs +0 -62
  595. package/dist/utils/urlResolver.cjs.map +0 -1
  596. package/dist/utils/urlResolver.d.ts +0 -56
  597. package/dist/utils/urlResolver.js +0 -37
  598. package/dist/utils/urlResolver.js.map +0 -1
  599. package/dist/utils/wallet.cjs +0 -63
  600. package/dist/utils/wallet.cjs.map +0 -1
  601. package/dist/utils/wallet.d.ts +0 -94
  602. package/dist/utils/wallet.js +0 -37
  603. package/dist/utils/wallet.js.map +0 -1
  604. package/dist/utils/withEvents.cjs +0 -44
  605. package/dist/utils/withEvents.cjs.map +0 -1
  606. package/dist/utils/withEvents.d.ts +0 -56
  607. package/dist/utils/withEvents.js +0 -18
  608. package/dist/utils/withEvents.js.map +0 -1
  609. /package/dist/{__tests__/waitForTransactionEvents.test.d.ts → auth/pkce.test.d.ts} +0 -0
  610. /package/dist/{client/__tests__/enhancedResponse.test.d.ts → auth/token-store.test.d.ts} +0 -0
  611. /package/dist/{controllers/__tests__/operations.processQueue.test.d.ts → auth/web3-signed.test.d.ts} +0 -0
  612. /package/dist/{controllers/__tests__/schemas-edge-cases.test.d.ts → crypto/envelope/openpgp.test.d.ts} +0 -0
  613. /package/dist/{controllers/data-error-handling.test.d.ts → crypto/keys/derive.test.d.ts} +0 -0
  614. /package/dist/{tests/errors.test.d.ts → errors.test.d.ts} +0 -0
  615. /package/dist/{controllers/server-additional.test.d.ts → protocol/data-file.test.d.ts} +0 -0
  616. /package/dist/{core/__tests__/health.test.d.ts → protocol/eip712.test.d.ts} +0 -0
  617. /package/dist/{core/__tests__/inMemoryNonceManager.test.d.ts → protocol/gateway.test.d.ts} +0 -0
  618. /package/dist/{core/__tests__/nonceManager.test.d.ts → protocol/grants.test.d.ts} +0 -0
  619. /package/dist/{core/core.test.d.ts → protocol/scopes.test.d.ts} +0 -0
  620. /package/dist/{core/tests/apiClient.test.d.ts → storage/tests/defaultStorage.test.d.ts} +0 -0
  621. /package/dist/{core/tests/client.test.d.ts → storage/tests/r2Storage.test.d.ts} +0 -0
  622. /package/dist/{core/tests/generics.test.d.ts → storage/tests/vanaStorage.test.d.ts} +0 -0
  623. /package/dist/{diagnostics.test.d.ts → types/ps-errors.test.d.ts} +0 -0
@@ -1,4512 +0,0 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var eventRegistry_exports = {};
20
- __export(eventRegistry_exports, {
21
- EVENT_REGISTRY: () => EVENT_REGISTRY,
22
- TOPIC_TO_ABIS: () => TOPIC_TO_ABIS
23
- });
24
- module.exports = __toCommonJS(eventRegistry_exports);
25
- const EVENT_REGISTRY = {
26
- "ComputeEngine.deposit": {
27
- contract: "ComputeEngine",
28
- fn: "deposit",
29
- eventNames: ["Deposit"]
30
- },
31
- "ComputeEngine.grantRole": {
32
- contract: "ComputeEngine",
33
- fn: "grantRole",
34
- eventNames: ["RoleGranted"]
35
- },
36
- "ComputeEngine.initialize": {
37
- contract: "ComputeEngine",
38
- fn: "initialize",
39
- eventNames: ["Initialized"]
40
- },
41
- "ComputeEngine.pause": {
42
- contract: "ComputeEngine",
43
- fn: "pause",
44
- eventNames: ["Paused"]
45
- },
46
- "ComputeEngine.registerJob": {
47
- contract: "ComputeEngine",
48
- fn: "registerJob",
49
- eventNames: ["JobRegistered"]
50
- },
51
- "ComputeEngine.renounceRole": {
52
- contract: "ComputeEngine",
53
- fn: "renounceRole",
54
- eventNames: ["RoleRevoked"]
55
- },
56
- "ComputeEngine.revokeRole": {
57
- contract: "ComputeEngine",
58
- fn: "revokeRole",
59
- eventNames: ["RoleRevoked"]
60
- },
61
- "ComputeEngine.unpause": {
62
- contract: "ComputeEngine",
63
- fn: "unpause",
64
- eventNames: ["Unpaused"]
65
- },
66
- "ComputeEngine.updateJobStatus": {
67
- contract: "ComputeEngine",
68
- fn: "updateJobStatus",
69
- eventNames: ["JobStatusUpdated"]
70
- },
71
- "ComputeEngine.upgradeToAndCall": {
72
- contract: "ComputeEngine",
73
- fn: "upgradeToAndCall",
74
- eventNames: ["Upgraded"]
75
- },
76
- "ComputeEngine.withdraw": {
77
- contract: "ComputeEngine",
78
- fn: "withdraw",
79
- eventNames: ["Withdraw"]
80
- },
81
- "ComputeInstructionRegistry.addComputeInstruction": {
82
- contract: "ComputeInstructionRegistry",
83
- fn: "addComputeInstruction",
84
- eventNames: ["ComputeInstructionAdded"]
85
- },
86
- "ComputeInstructionRegistry.grantRole": {
87
- contract: "ComputeInstructionRegistry",
88
- fn: "grantRole",
89
- eventNames: ["RoleGranted"]
90
- },
91
- "ComputeInstructionRegistry.initialize": {
92
- contract: "ComputeInstructionRegistry",
93
- fn: "initialize",
94
- eventNames: ["Initialized"]
95
- },
96
- "ComputeInstructionRegistry.pause": {
97
- contract: "ComputeInstructionRegistry",
98
- fn: "pause",
99
- eventNames: ["Paused"]
100
- },
101
- "ComputeInstructionRegistry.renounceRole": {
102
- contract: "ComputeInstructionRegistry",
103
- fn: "renounceRole",
104
- eventNames: ["RoleRevoked"]
105
- },
106
- "ComputeInstructionRegistry.revokeRole": {
107
- contract: "ComputeInstructionRegistry",
108
- fn: "revokeRole",
109
- eventNames: ["RoleRevoked"]
110
- },
111
- "ComputeInstructionRegistry.unpause": {
112
- contract: "ComputeInstructionRegistry",
113
- fn: "unpause",
114
- eventNames: ["Unpaused"]
115
- },
116
- "ComputeInstructionRegistry.updateComputeInstruction": {
117
- contract: "ComputeInstructionRegistry",
118
- fn: "updateComputeInstruction",
119
- eventNames: ["ComputeInstructionUpdated"]
120
- },
121
- "ComputeInstructionRegistry.upgradeToAndCall": {
122
- contract: "ComputeInstructionRegistry",
123
- fn: "upgradeToAndCall",
124
- eventNames: ["Upgraded"]
125
- },
126
- "DAT.approve": {
127
- contract: "DAT",
128
- fn: "approve",
129
- eventNames: ["Approval"]
130
- },
131
- "DAT.blockAddress": {
132
- contract: "DAT",
133
- fn: "blockAddress",
134
- eventNames: ["AddressBlocked"]
135
- },
136
- "DAT.burn": {
137
- contract: "DAT",
138
- fn: "burn",
139
- eventNames: []
140
- },
141
- "DAT.mint": {
142
- contract: "DAT",
143
- fn: "mint",
144
- eventNames: []
145
- },
146
- "DAT.transfer": {
147
- contract: "DAT",
148
- fn: "transfer",
149
- eventNames: ["Transfer"]
150
- },
151
- "DAT.transferFrom": {
152
- contract: "DAT",
153
- fn: "transferFrom",
154
- eventNames: ["Transfer"]
155
- },
156
- "DAT.unblockAddress": {
157
- contract: "DAT",
158
- fn: "unblockAddress",
159
- eventNames: ["AddressUnblocked"]
160
- },
161
- "DATFactory.createDAT": {
162
- contract: "DATFactory",
163
- fn: "createDAT",
164
- eventNames: ["DATCreated"]
165
- },
166
- "DATFactory.createToken": {
167
- contract: "DATFactory",
168
- fn: "createToken",
169
- eventNames: ["DATCreated"]
170
- },
171
- "DATFactory.grantRole": {
172
- contract: "DATFactory",
173
- fn: "grantRole",
174
- eventNames: ["RoleGranted"]
175
- },
176
- "DATFactory.initialize": {
177
- contract: "DATFactory",
178
- fn: "initialize",
179
- eventNames: ["Initialized"]
180
- },
181
- "DATFactory.pause": {
182
- contract: "DATFactory",
183
- fn: "pause",
184
- eventNames: ["Paused"]
185
- },
186
- "DATFactory.renounceRole": {
187
- contract: "DATFactory",
188
- fn: "renounceRole",
189
- eventNames: ["RoleRevoked"]
190
- },
191
- "DATFactory.revokeRole": {
192
- contract: "DATFactory",
193
- fn: "revokeRole",
194
- eventNames: ["RoleRevoked"]
195
- },
196
- "DATFactory.unpause": {
197
- contract: "DATFactory",
198
- fn: "unpause",
199
- eventNames: ["Unpaused"]
200
- },
201
- "DATFactory.updateDATTemplate": {
202
- contract: "DATFactory",
203
- fn: "updateDATTemplate",
204
- eventNames: []
205
- },
206
- "DATFactory.updateFactoryFee": {
207
- contract: "DATFactory",
208
- fn: "updateFactoryFee",
209
- eventNames: []
210
- },
211
- "DATFactory.upgradeToAndCall": {
212
- contract: "DATFactory",
213
- fn: "upgradeToAndCall",
214
- eventNames: ["Upgraded"]
215
- },
216
- "DATPausable.approve": {
217
- contract: "DATPausable",
218
- fn: "approve",
219
- eventNames: ["Approval"]
220
- },
221
- "DATPausable.blockAddress": {
222
- contract: "DATPausable",
223
- fn: "blockAddress",
224
- eventNames: ["AddressBlocked"]
225
- },
226
- "DATPausable.burn": {
227
- contract: "DATPausable",
228
- fn: "burn",
229
- eventNames: []
230
- },
231
- "DATPausable.mint": {
232
- contract: "DATPausable",
233
- fn: "mint",
234
- eventNames: []
235
- },
236
- "DATPausable.transfer": {
237
- contract: "DATPausable",
238
- fn: "transfer",
239
- eventNames: ["Transfer"]
240
- },
241
- "DATPausable.transferFrom": {
242
- contract: "DATPausable",
243
- fn: "transferFrom",
244
- eventNames: ["Transfer"]
245
- },
246
- "DATPausable.unblockAddress": {
247
- contract: "DATPausable",
248
- fn: "unblockAddress",
249
- eventNames: ["AddressUnblocked"]
250
- },
251
- "DATVotes.approve": {
252
- contract: "DATVotes",
253
- fn: "approve",
254
- eventNames: ["Approval"]
255
- },
256
- "DATVotes.blockAddress": {
257
- contract: "DATVotes",
258
- fn: "blockAddress",
259
- eventNames: ["AddressBlocked"]
260
- },
261
- "DATVotes.burn": {
262
- contract: "DATVotes",
263
- fn: "burn",
264
- eventNames: []
265
- },
266
- "DATVotes.delegate": {
267
- contract: "DATVotes",
268
- fn: "delegate",
269
- eventNames: ["DelegateChanged", "DelegateVotesChanged"]
270
- },
271
- "DATVotes.delegateBySig": {
272
- contract: "DATVotes",
273
- fn: "delegateBySig",
274
- eventNames: ["DelegateChanged", "DelegateVotesChanged"]
275
- },
276
- "DATVotes.mint": {
277
- contract: "DATVotes",
278
- fn: "mint",
279
- eventNames: []
280
- },
281
- "DATVotes.transfer": {
282
- contract: "DATVotes",
283
- fn: "transfer",
284
- eventNames: ["Transfer"]
285
- },
286
- "DATVotes.transferFrom": {
287
- contract: "DATVotes",
288
- fn: "transferFrom",
289
- eventNames: ["Transfer"]
290
- },
291
- "DATVotes.unblockAddress": {
292
- contract: "DATVotes",
293
- fn: "unblockAddress",
294
- eventNames: ["AddressUnblocked"]
295
- },
296
- "DLPPerformance.grantRole": {
297
- contract: "DLPPerformance",
298
- fn: "grantRole",
299
- eventNames: ["RoleGranted"]
300
- },
301
- "DLPPerformance.initialize": {
302
- contract: "DLPPerformance",
303
- fn: "initialize",
304
- eventNames: ["Initialized"]
305
- },
306
- "DLPPerformance.overrideEpochDlpPenalty": {
307
- contract: "DLPPerformance",
308
- fn: "overrideEpochDlpPenalty",
309
- eventNames: ["EpochDlpPenaltyUpdated"]
310
- },
311
- "DLPPerformance.overrideEpochPerformances": {
312
- contract: "DLPPerformance",
313
- fn: "overrideEpochPerformances",
314
- eventNames: ["EpochDlpPerformancesOverridden"]
315
- },
316
- "DLPPerformance.pause": {
317
- contract: "DLPPerformance",
318
- fn: "pause",
319
- eventNames: ["Paused"]
320
- },
321
- "DLPPerformance.renounceRole": {
322
- contract: "DLPPerformance",
323
- fn: "renounceRole",
324
- eventNames: ["RoleRevoked"]
325
- },
326
- "DLPPerformance.revokeRole": {
327
- contract: "DLPPerformance",
328
- fn: "revokeRole",
329
- eventNames: ["RoleRevoked"]
330
- },
331
- "DLPPerformance.saveEpochPerformances": {
332
- contract: "DLPPerformance",
333
- fn: "saveEpochPerformances",
334
- eventNames: ["EpochDlpPerformancesSaved"]
335
- },
336
- "DLPPerformance.unpause": {
337
- contract: "DLPPerformance",
338
- fn: "unpause",
339
- eventNames: ["Unpaused"]
340
- },
341
- "DLPPerformance.updateMetricWeights": {
342
- contract: "DLPPerformance",
343
- fn: "updateMetricWeights",
344
- eventNames: ["MetricWeightsUpdated"]
345
- },
346
- "DLPPerformance.upgradeToAndCall": {
347
- contract: "DLPPerformance",
348
- fn: "upgradeToAndCall",
349
- eventNames: ["Upgraded"]
350
- },
351
- "DLPRegistry.deregisterDlp": {
352
- contract: "DLPRegistry",
353
- fn: "deregisterDlp",
354
- eventNames: ["DlpStatusUpdated"]
355
- },
356
- "DLPRegistry.grantRole": {
357
- contract: "DLPRegistry",
358
- fn: "grantRole",
359
- eventNames: ["RoleGranted"]
360
- },
361
- "DLPRegistry.initialize": {
362
- contract: "DLPRegistry",
363
- fn: "initialize",
364
- eventNames: ["Initialized"]
365
- },
366
- "DLPRegistry.migrateDlpData": {
367
- contract: "DLPRegistry",
368
- fn: "migrateDlpData",
369
- eventNames: ["DlpRegistered"]
370
- },
371
- "DLPRegistry.pause": {
372
- contract: "DLPRegistry",
373
- fn: "pause",
374
- eventNames: ["Paused"]
375
- },
376
- "DLPRegistry.registerDlp": {
377
- contract: "DLPRegistry",
378
- fn: "registerDlp",
379
- eventNames: ["DlpRegistered"]
380
- },
381
- "DLPRegistry.renounceRole": {
382
- contract: "DLPRegistry",
383
- fn: "renounceRole",
384
- eventNames: ["RoleRevoked"]
385
- },
386
- "DLPRegistry.revokeRole": {
387
- contract: "DLPRegistry",
388
- fn: "revokeRole",
389
- eventNames: ["RoleRevoked"]
390
- },
391
- "DLPRegistry.unpause": {
392
- contract: "DLPRegistry",
393
- fn: "unpause",
394
- eventNames: ["Unpaused"]
395
- },
396
- "DLPRegistry.unverifyDlp": {
397
- contract: "DLPRegistry",
398
- fn: "unverifyDlp",
399
- eventNames: ["DlpVerificationBlockUpdated"]
400
- },
401
- "DLPRegistry.updateDlp": {
402
- contract: "DLPRegistry",
403
- fn: "updateDlp",
404
- eventNames: ["DlpUpdated"]
405
- },
406
- "DLPRegistry.updateDlpRegistrationDepositAmount": {
407
- contract: "DLPRegistry",
408
- fn: "updateDlpRegistrationDepositAmount",
409
- eventNames: ["DlpRegistrationDepositAmountUpdated"]
410
- },
411
- "DLPRegistry.updateDlpToken": {
412
- contract: "DLPRegistry",
413
- fn: "updateDlpToken",
414
- eventNames: ["DlpTokenUpdated"]
415
- },
416
- "DLPRegistry.updateDlpTokenAndVerification": {
417
- contract: "DLPRegistry",
418
- fn: "updateDlpTokenAndVerification",
419
- eventNames: ["DlpTokenUpdated", "DlpVerificationBlockUpdated"]
420
- },
421
- "DLPRegistry.updateDlpVerificationBlock": {
422
- contract: "DLPRegistry",
423
- fn: "updateDlpVerificationBlock",
424
- eventNames: ["DlpVerificationBlockUpdated"]
425
- },
426
- "DLPRegistry.upgradeToAndCall": {
427
- contract: "DLPRegistry",
428
- fn: "upgradeToAndCall",
429
- eventNames: ["Upgraded"]
430
- },
431
- "DLPRegistryTreasury.allocateFunds": {
432
- contract: "DLPRegistryTreasury",
433
- fn: "allocateFunds",
434
- eventNames: []
435
- },
436
- "DLPRegistryTreasury.deposit": {
437
- contract: "DLPRegistryTreasury",
438
- fn: "deposit",
439
- eventNames: []
440
- },
441
- "DLPRegistryTreasury.grantRole": {
442
- contract: "DLPRegistryTreasury",
443
- fn: "grantRole",
444
- eventNames: ["RoleGranted"]
445
- },
446
- "DLPRegistryTreasury.initialize": {
447
- contract: "DLPRegistryTreasury",
448
- fn: "initialize",
449
- eventNames: ["Initialized"]
450
- },
451
- "DLPRegistryTreasury.pause": {
452
- contract: "DLPRegistryTreasury",
453
- fn: "pause",
454
- eventNames: ["Paused"]
455
- },
456
- "DLPRegistryTreasury.renounceRole": {
457
- contract: "DLPRegistryTreasury",
458
- fn: "renounceRole",
459
- eventNames: ["RoleRevoked"]
460
- },
461
- "DLPRegistryTreasury.revokeRole": {
462
- contract: "DLPRegistryTreasury",
463
- fn: "revokeRole",
464
- eventNames: ["RoleRevoked"]
465
- },
466
- "DLPRegistryTreasury.transfer": {
467
- contract: "DLPRegistryTreasury",
468
- fn: "transfer",
469
- eventNames: ["Transfer"]
470
- },
471
- "DLPRegistryTreasury.unpause": {
472
- contract: "DLPRegistryTreasury",
473
- fn: "unpause",
474
- eventNames: ["Unpaused"]
475
- },
476
- "DLPRegistryTreasury.updateBudget": {
477
- contract: "DLPRegistryTreasury",
478
- fn: "updateBudget",
479
- eventNames: []
480
- },
481
- "DLPRegistryTreasury.upgradeToAndCall": {
482
- contract: "DLPRegistryTreasury",
483
- fn: "upgradeToAndCall",
484
- eventNames: ["Upgraded"]
485
- },
486
- "DLPRegistryTreasury.withdraw": {
487
- contract: "DLPRegistryTreasury",
488
- fn: "withdraw",
489
- eventNames: []
490
- },
491
- "DLPRewardDeployer.distributeRewards": {
492
- contract: "DLPRewardDeployer",
493
- fn: "distributeRewards",
494
- eventNames: ["EpochDlpRewardDistributed"]
495
- },
496
- "DLPRewardDeployer.grantRole": {
497
- contract: "DLPRewardDeployer",
498
- fn: "grantRole",
499
- eventNames: ["RoleGranted"]
500
- },
501
- "DLPRewardDeployer.initialize": {
502
- contract: "DLPRewardDeployer",
503
- fn: "initialize",
504
- eventNames: ["Initialized"]
505
- },
506
- "DLPRewardDeployer.pause": {
507
- contract: "DLPRewardDeployer",
508
- fn: "pause",
509
- eventNames: ["Paused"]
510
- },
511
- "DLPRewardDeployer.renounceRole": {
512
- contract: "DLPRewardDeployer",
513
- fn: "renounceRole",
514
- eventNames: ["RoleRevoked"]
515
- },
516
- "DLPRewardDeployer.revokeRole": {
517
- contract: "DLPRewardDeployer",
518
- fn: "revokeRole",
519
- eventNames: ["RoleRevoked"]
520
- },
521
- "DLPRewardDeployer.unpause": {
522
- contract: "DLPRewardDeployer",
523
- fn: "unpause",
524
- eventNames: ["Unpaused"]
525
- },
526
- "DLPRewardDeployer.upgradeToAndCall": {
527
- contract: "DLPRewardDeployer",
528
- fn: "upgradeToAndCall",
529
- eventNames: ["Upgraded"]
530
- },
531
- "DLPRewardDeployer.withdrawEpochDlpPenaltyAmount": {
532
- contract: "DLPRewardDeployer",
533
- fn: "withdrawEpochDlpPenaltyAmount",
534
- eventNames: ["EpochDlpPenaltyDistributed"]
535
- },
536
- "DLPRewardDeployerTreasury.allocateRewards": {
537
- contract: "DLPRewardDeployerTreasury",
538
- fn: "allocateRewards",
539
- eventNames: []
540
- },
541
- "DLPRewardDeployerTreasury.deposit": {
542
- contract: "DLPRewardDeployerTreasury",
543
- fn: "deposit",
544
- eventNames: []
545
- },
546
- "DLPRewardDeployerTreasury.grantRole": {
547
- contract: "DLPRewardDeployerTreasury",
548
- fn: "grantRole",
549
- eventNames: ["RoleGranted"]
550
- },
551
- "DLPRewardDeployerTreasury.initialize": {
552
- contract: "DLPRewardDeployerTreasury",
553
- fn: "initialize",
554
- eventNames: ["Initialized"]
555
- },
556
- "DLPRewardDeployerTreasury.pause": {
557
- contract: "DLPRewardDeployerTreasury",
558
- fn: "pause",
559
- eventNames: ["Paused"]
560
- },
561
- "DLPRewardDeployerTreasury.renounceRole": {
562
- contract: "DLPRewardDeployerTreasury",
563
- fn: "renounceRole",
564
- eventNames: ["RoleRevoked"]
565
- },
566
- "DLPRewardDeployerTreasury.revokeRole": {
567
- contract: "DLPRewardDeployerTreasury",
568
- fn: "revokeRole",
569
- eventNames: ["RoleRevoked"]
570
- },
571
- "DLPRewardDeployerTreasury.transfer": {
572
- contract: "DLPRewardDeployerTreasury",
573
- fn: "transfer",
574
- eventNames: ["Transfer"]
575
- },
576
- "DLPRewardDeployerTreasury.unpause": {
577
- contract: "DLPRewardDeployerTreasury",
578
- fn: "unpause",
579
- eventNames: ["Unpaused"]
580
- },
581
- "DLPRewardDeployerTreasury.updateAllocation": {
582
- contract: "DLPRewardDeployerTreasury",
583
- fn: "updateAllocation",
584
- eventNames: []
585
- },
586
- "DLPRewardDeployerTreasury.upgradeToAndCall": {
587
- contract: "DLPRewardDeployerTreasury",
588
- fn: "upgradeToAndCall",
589
- eventNames: ["Upgraded"]
590
- },
591
- "DLPRewardDeployerTreasury.withdraw": {
592
- contract: "DLPRewardDeployerTreasury",
593
- fn: "withdraw",
594
- eventNames: []
595
- },
596
- "DLPRewardSwap.addLiquidity": {
597
- contract: "DLPRewardSwap",
598
- fn: "addLiquidity",
599
- eventNames: []
600
- },
601
- "DLPRewardSwap.grantRole": {
602
- contract: "DLPRewardSwap",
603
- fn: "grantRole",
604
- eventNames: ["RoleGranted"]
605
- },
606
- "DLPRewardSwap.initialize": {
607
- contract: "DLPRewardSwap",
608
- fn: "initialize",
609
- eventNames: ["Initialized"]
610
- },
611
- "DLPRewardSwap.pause": {
612
- contract: "DLPRewardSwap",
613
- fn: "pause",
614
- eventNames: ["Paused"]
615
- },
616
- "DLPRewardSwap.removeLiquidity": {
617
- contract: "DLPRewardSwap",
618
- fn: "removeLiquidity",
619
- eventNames: []
620
- },
621
- "DLPRewardSwap.renounceRole": {
622
- contract: "DLPRewardSwap",
623
- fn: "renounceRole",
624
- eventNames: ["RoleRevoked"]
625
- },
626
- "DLPRewardSwap.revokeRole": {
627
- contract: "DLPRewardSwap",
628
- fn: "revokeRole",
629
- eventNames: ["RoleRevoked"]
630
- },
631
- "DLPRewardSwap.splitRewardSwap": {
632
- contract: "DLPRewardSwap",
633
- fn: "splitRewardSwap",
634
- eventNames: ["Reward"]
635
- },
636
- "DLPRewardSwap.swap": {
637
- contract: "DLPRewardSwap",
638
- fn: "swap",
639
- eventNames: []
640
- },
641
- "DLPRewardSwap.unpause": {
642
- contract: "DLPRewardSwap",
643
- fn: "unpause",
644
- eventNames: ["Unpaused"]
645
- },
646
- "DLPRewardSwap.updateSwapFee": {
647
- contract: "DLPRewardSwap",
648
- fn: "updateSwapFee",
649
- eventNames: []
650
- },
651
- "DLPRewardSwap.upgradeToAndCall": {
652
- contract: "DLPRewardSwap",
653
- fn: "upgradeToAndCall",
654
- eventNames: ["Upgraded"]
655
- },
656
- "DataPortabilityGrantees.addPermissionToGrantee": {
657
- contract: "DataPortabilityGrantees",
658
- fn: "addPermissionToGrantee",
659
- eventNames: []
660
- },
661
- "DataPortabilityGrantees.grantRole": {
662
- contract: "DataPortabilityGrantees",
663
- fn: "grantRole",
664
- eventNames: ["RoleGranted"]
665
- },
666
- "DataPortabilityGrantees.initialize": {
667
- contract: "DataPortabilityGrantees",
668
- fn: "initialize",
669
- eventNames: ["Initialized"]
670
- },
671
- "DataPortabilityGrantees.pause": {
672
- contract: "DataPortabilityGrantees",
673
- fn: "pause",
674
- eventNames: ["Paused"]
675
- },
676
- "DataPortabilityGrantees.registerGrantee": {
677
- contract: "DataPortabilityGrantees",
678
- fn: "registerGrantee",
679
- eventNames: ["GranteeRegistered"]
680
- },
681
- "DataPortabilityGrantees.removePermissionFromGrantee": {
682
- contract: "DataPortabilityGrantees",
683
- fn: "removePermissionFromGrantee",
684
- eventNames: []
685
- },
686
- "DataPortabilityGrantees.renounceRole": {
687
- contract: "DataPortabilityGrantees",
688
- fn: "renounceRole",
689
- eventNames: ["RoleRevoked"]
690
- },
691
- "DataPortabilityGrantees.revokeRole": {
692
- contract: "DataPortabilityGrantees",
693
- fn: "revokeRole",
694
- eventNames: ["RoleRevoked"]
695
- },
696
- "DataPortabilityGrantees.unpause": {
697
- contract: "DataPortabilityGrantees",
698
- fn: "unpause",
699
- eventNames: ["Unpaused"]
700
- },
701
- "DataPortabilityGrantees.upgradeToAndCall": {
702
- contract: "DataPortabilityGrantees",
703
- fn: "upgradeToAndCall",
704
- eventNames: ["Upgraded"]
705
- },
706
- "DataPortabilityPermissions.addPermission": {
707
- contract: "DataPortabilityPermissions",
708
- fn: "addPermission",
709
- eventNames: ["PermissionAdded"]
710
- },
711
- "DataPortabilityPermissions.addServerFilesAndPermissions": {
712
- contract: "DataPortabilityPermissions",
713
- fn: "addServerFilesAndPermissions",
714
- eventNames: ["PermissionAdded"]
715
- },
716
- "DataPortabilityPermissions.grantRole": {
717
- contract: "DataPortabilityPermissions",
718
- fn: "grantRole",
719
- eventNames: ["RoleGranted"]
720
- },
721
- "DataPortabilityPermissions.initialize": {
722
- contract: "DataPortabilityPermissions",
723
- fn: "initialize",
724
- eventNames: ["Initialized"]
725
- },
726
- "DataPortabilityPermissions.pause": {
727
- contract: "DataPortabilityPermissions",
728
- fn: "pause",
729
- eventNames: ["Paused"]
730
- },
731
- "DataPortabilityPermissions.renounceRole": {
732
- contract: "DataPortabilityPermissions",
733
- fn: "renounceRole",
734
- eventNames: ["RoleRevoked"]
735
- },
736
- "DataPortabilityPermissions.revokePermission": {
737
- contract: "DataPortabilityPermissions",
738
- fn: "revokePermission",
739
- eventNames: ["PermissionRevoked"]
740
- },
741
- "DataPortabilityPermissions.revokePermissionWithSignature": {
742
- contract: "DataPortabilityPermissions",
743
- fn: "revokePermissionWithSignature",
744
- eventNames: ["PermissionRevoked"]
745
- },
746
- "DataPortabilityPermissions.revokeRole": {
747
- contract: "DataPortabilityPermissions",
748
- fn: "revokeRole",
749
- eventNames: ["RoleRevoked"]
750
- },
751
- "DataPortabilityPermissions.unpause": {
752
- contract: "DataPortabilityPermissions",
753
- fn: "unpause",
754
- eventNames: ["Unpaused"]
755
- },
756
- "DataPortabilityPermissions.upgradeToAndCall": {
757
- contract: "DataPortabilityPermissions",
758
- fn: "upgradeToAndCall",
759
- eventNames: ["Upgraded"]
760
- },
761
- "DataPortabilityServers.addAndTrustServerByManager": {
762
- contract: "DataPortabilityServers",
763
- fn: "addAndTrustServerByManager",
764
- eventNames: ["ServerRegistered", "ServerTrusted"]
765
- },
766
- "DataPortabilityServers.addAndTrustServerWithSignature": {
767
- contract: "DataPortabilityServers",
768
- fn: "addAndTrustServerWithSignature",
769
- eventNames: ["ServerRegistered", "ServerTrusted"]
770
- },
771
- "DataPortabilityServers.addServerWithSignature": {
772
- contract: "DataPortabilityServers",
773
- fn: "addServerWithSignature",
774
- eventNames: ["ServerRegistered"]
775
- },
776
- "DataPortabilityServers.grantRole": {
777
- contract: "DataPortabilityServers",
778
- fn: "grantRole",
779
- eventNames: ["RoleGranted"]
780
- },
781
- "DataPortabilityServers.initialize": {
782
- contract: "DataPortabilityServers",
783
- fn: "initialize",
784
- eventNames: ["Initialized"]
785
- },
786
- "DataPortabilityServers.pause": {
787
- contract: "DataPortabilityServers",
788
- fn: "pause",
789
- eventNames: ["Paused"]
790
- },
791
- "DataPortabilityServers.renounceRole": {
792
- contract: "DataPortabilityServers",
793
- fn: "renounceRole",
794
- eventNames: ["RoleRevoked"]
795
- },
796
- "DataPortabilityServers.revokeRole": {
797
- contract: "DataPortabilityServers",
798
- fn: "revokeRole",
799
- eventNames: ["RoleRevoked"]
800
- },
801
- "DataPortabilityServers.trustServer": {
802
- contract: "DataPortabilityServers",
803
- fn: "trustServer",
804
- eventNames: ["ServerTrusted"]
805
- },
806
- "DataPortabilityServers.trustServerByManager": {
807
- contract: "DataPortabilityServers",
808
- fn: "trustServerByManager",
809
- eventNames: ["ServerTrusted"]
810
- },
811
- "DataPortabilityServers.trustServerWithSignature": {
812
- contract: "DataPortabilityServers",
813
- fn: "trustServerWithSignature",
814
- eventNames: ["ServerTrusted"]
815
- },
816
- "DataPortabilityServers.unpause": {
817
- contract: "DataPortabilityServers",
818
- fn: "unpause",
819
- eventNames: ["Unpaused"]
820
- },
821
- "DataPortabilityServers.untrustServer": {
822
- contract: "DataPortabilityServers",
823
- fn: "untrustServer",
824
- eventNames: ["ServerUntrusted"]
825
- },
826
- "DataPortabilityServers.untrustServerByManager": {
827
- contract: "DataPortabilityServers",
828
- fn: "untrustServerByManager",
829
- eventNames: ["ServerUntrusted"]
830
- },
831
- "DataPortabilityServers.untrustServerWithSignature": {
832
- contract: "DataPortabilityServers",
833
- fn: "untrustServerWithSignature",
834
- eventNames: ["ServerUntrusted"]
835
- },
836
- "DataPortabilityServers.updateServer": {
837
- contract: "DataPortabilityServers",
838
- fn: "updateServer",
839
- eventNames: ["ServerUpdated"]
840
- },
841
- "DataPortabilityServers.upgradeToAndCall": {
842
- contract: "DataPortabilityServers",
843
- fn: "upgradeToAndCall",
844
- eventNames: ["Upgraded"]
845
- },
846
- "DataRefinerRegistry.addRefinementService": {
847
- contract: "DataRefinerRegistry",
848
- fn: "addRefinementService",
849
- eventNames: []
850
- },
851
- "DataRefinerRegistry.addRefiner": {
852
- contract: "DataRefinerRegistry",
853
- fn: "addRefiner",
854
- eventNames: ["RefinerAdded"]
855
- },
856
- "DataRefinerRegistry.addRefinerWithSchemaId": {
857
- contract: "DataRefinerRegistry",
858
- fn: "addRefinerWithSchemaId",
859
- eventNames: ["RefinerAdded"]
860
- },
861
- "DataRefinerRegistry.addSchema": {
862
- contract: "DataRefinerRegistry",
863
- fn: "addSchema",
864
- eventNames: ["SchemaAdded"]
865
- },
866
- "DataRefinerRegistry.grantRole": {
867
- contract: "DataRefinerRegistry",
868
- fn: "grantRole",
869
- eventNames: ["RoleGranted"]
870
- },
871
- "DataRefinerRegistry.initialize": {
872
- contract: "DataRefinerRegistry",
873
- fn: "initialize",
874
- eventNames: ["Initialized"]
875
- },
876
- "DataRefinerRegistry.pause": {
877
- contract: "DataRefinerRegistry",
878
- fn: "pause",
879
- eventNames: ["Paused"]
880
- },
881
- "DataRefinerRegistry.removeRefinementService": {
882
- contract: "DataRefinerRegistry",
883
- fn: "removeRefinementService",
884
- eventNames: []
885
- },
886
- "DataRefinerRegistry.renounceRole": {
887
- contract: "DataRefinerRegistry",
888
- fn: "renounceRole",
889
- eventNames: ["RoleRevoked"]
890
- },
891
- "DataRefinerRegistry.revokeRole": {
892
- contract: "DataRefinerRegistry",
893
- fn: "revokeRole",
894
- eventNames: ["RoleRevoked"]
895
- },
896
- "DataRefinerRegistry.unpause": {
897
- contract: "DataRefinerRegistry",
898
- fn: "unpause",
899
- eventNames: ["Unpaused"]
900
- },
901
- "DataRefinerRegistry.updateDlpRefinersOwner": {
902
- contract: "DataRefinerRegistry",
903
- fn: "updateDlpRefinersOwner",
904
- eventNames: []
905
- },
906
- "DataRefinerRegistry.updateRefinerOwner": {
907
- contract: "DataRefinerRegistry",
908
- fn: "updateRefinerOwner",
909
- eventNames: []
910
- },
911
- "DataRefinerRegistry.updateSchemaId": {
912
- contract: "DataRefinerRegistry",
913
- fn: "updateSchemaId",
914
- eventNames: []
915
- },
916
- "DataRefinerRegistry.upgradeToAndCall": {
917
- contract: "DataRefinerRegistry",
918
- fn: "upgradeToAndCall",
919
- eventNames: ["Upgraded"]
920
- },
921
- "DataRegistry.addFile": {
922
- contract: "DataRegistry",
923
- fn: "addFile",
924
- eventNames: ["FileAdded"]
925
- },
926
- "DataRegistry.addFilePermission": {
927
- contract: "DataRegistry",
928
- fn: "addFilePermission",
929
- eventNames: ["PermissionGranted"]
930
- },
931
- "DataRegistry.addFilePermissionsAndSchema": {
932
- contract: "DataRegistry",
933
- fn: "addFilePermissionsAndSchema",
934
- eventNames: ["FileAddedV2", "PermissionGranted"]
935
- },
936
- "DataRegistry.addFileWithPermissions": {
937
- contract: "DataRegistry",
938
- fn: "addFileWithPermissions",
939
- eventNames: ["FileAdded", "PermissionGranted"]
940
- },
941
- "DataRegistry.addFileWithPermissionsAndSchema": {
942
- contract: "DataRegistry",
943
- fn: "addFileWithPermissionsAndSchema",
944
- eventNames: ["FileAdded", "PermissionGranted"]
945
- },
946
- "DataRegistry.addFileWithSchema": {
947
- contract: "DataRegistry",
948
- fn: "addFileWithSchema",
949
- eventNames: ["FileAdded"]
950
- },
951
- "DataRegistry.addFileWithSignature": {
952
- contract: "DataRegistry",
953
- fn: "addFileWithSignature",
954
- eventNames: ["FileAdded"]
955
- },
956
- "DataRegistry.addProof": {
957
- contract: "DataRegistry",
958
- fn: "addProof",
959
- eventNames: ["ProofAdded"]
960
- },
961
- "DataRegistry.addRefinementWithPermission": {
962
- contract: "DataRegistry",
963
- fn: "addRefinementWithPermission",
964
- eventNames: ["RefinementAdded", "PermissionGranted"]
965
- },
966
- "DataRegistry.grantRole": {
967
- contract: "DataRegistry",
968
- fn: "grantRole",
969
- eventNames: ["RoleGranted"]
970
- },
971
- "DataRegistry.initialize": {
972
- contract: "DataRegistry",
973
- fn: "initialize",
974
- eventNames: ["Initialized"]
975
- },
976
- "DataRegistry.pause": {
977
- contract: "DataRegistry",
978
- fn: "pause",
979
- eventNames: ["Paused"]
980
- },
981
- "DataRegistry.renounceRole": {
982
- contract: "DataRegistry",
983
- fn: "renounceRole",
984
- eventNames: ["RoleRevoked"]
985
- },
986
- "DataRegistry.revokeRole": {
987
- contract: "DataRegistry",
988
- fn: "revokeRole",
989
- eventNames: ["RoleRevoked"]
990
- },
991
- "DataRegistry.unpause": {
992
- contract: "DataRegistry",
993
- fn: "unpause",
994
- eventNames: ["Unpaused"]
995
- },
996
- "DataRegistry.upgradeToAndCall": {
997
- contract: "DataRegistry",
998
- fn: "upgradeToAndCall",
999
- eventNames: ["Upgraded"]
1000
- },
1001
- "QueryEngine.cacheResult": {
1002
- contract: "QueryEngine",
1003
- fn: "cacheResult",
1004
- eventNames: []
1005
- },
1006
- "QueryEngine.claimDlpPayment": {
1007
- contract: "QueryEngine",
1008
- fn: "claimDlpPayment",
1009
- eventNames: ["DlpPaymentClaimed"]
1010
- },
1011
- "QueryEngine.executeQuery": {
1012
- contract: "QueryEngine",
1013
- fn: "executeQuery",
1014
- eventNames: []
1015
- },
1016
- "QueryEngine.grantRole": {
1017
- contract: "QueryEngine",
1018
- fn: "grantRole",
1019
- eventNames: ["RoleGranted"]
1020
- },
1021
- "QueryEngine.initialize": {
1022
- contract: "QueryEngine",
1023
- fn: "initialize",
1024
- eventNames: ["Initialized"]
1025
- },
1026
- "QueryEngine.invalidateCache": {
1027
- contract: "QueryEngine",
1028
- fn: "invalidateCache",
1029
- eventNames: []
1030
- },
1031
- "QueryEngine.pause": {
1032
- contract: "QueryEngine",
1033
- fn: "pause",
1034
- eventNames: ["Paused"]
1035
- },
1036
- "QueryEngine.renounceRole": {
1037
- contract: "QueryEngine",
1038
- fn: "renounceRole",
1039
- eventNames: ["RoleRevoked"]
1040
- },
1041
- "QueryEngine.revokeRole": {
1042
- contract: "QueryEngine",
1043
- fn: "revokeRole",
1044
- eventNames: ["RoleRevoked"]
1045
- },
1046
- "QueryEngine.unpause": {
1047
- contract: "QueryEngine",
1048
- fn: "unpause",
1049
- eventNames: ["Unpaused"]
1050
- },
1051
- "QueryEngine.updatePermissionApproval": {
1052
- contract: "QueryEngine",
1053
- fn: "updatePermissionApproval",
1054
- eventNames: ["PermissionApprovalUpdated"]
1055
- },
1056
- "QueryEngine.updateQueryLimit": {
1057
- contract: "QueryEngine",
1058
- fn: "updateQueryLimit",
1059
- eventNames: []
1060
- },
1061
- "QueryEngine.upgradeToAndCall": {
1062
- contract: "QueryEngine",
1063
- fn: "upgradeToAndCall",
1064
- eventNames: ["Upgraded"]
1065
- },
1066
- "SwapHelper.getQuote": {
1067
- contract: "SwapHelper",
1068
- fn: "getQuote",
1069
- eventNames: []
1070
- },
1071
- "SwapHelper.grantRole": {
1072
- contract: "SwapHelper",
1073
- fn: "grantRole",
1074
- eventNames: ["RoleGranted"]
1075
- },
1076
- "SwapHelper.initialize": {
1077
- contract: "SwapHelper",
1078
- fn: "initialize",
1079
- eventNames: ["Initialized"]
1080
- },
1081
- "SwapHelper.renounceRole": {
1082
- contract: "SwapHelper",
1083
- fn: "renounceRole",
1084
- eventNames: ["RoleRevoked"]
1085
- },
1086
- "SwapHelper.revokeRole": {
1087
- contract: "SwapHelper",
1088
- fn: "revokeRole",
1089
- eventNames: ["RoleRevoked"]
1090
- },
1091
- "SwapHelper.swap": {
1092
- contract: "SwapHelper",
1093
- fn: "swap",
1094
- eventNames: []
1095
- },
1096
- "SwapHelper.updateRouter": {
1097
- contract: "SwapHelper",
1098
- fn: "updateRouter",
1099
- eventNames: []
1100
- },
1101
- "SwapHelper.updateSlippage": {
1102
- contract: "SwapHelper",
1103
- fn: "updateSlippage",
1104
- eventNames: []
1105
- },
1106
- "SwapHelper.upgradeToAndCall": {
1107
- contract: "SwapHelper",
1108
- fn: "upgradeToAndCall",
1109
- eventNames: ["Upgraded"]
1110
- },
1111
- "TeePool.addJob": {
1112
- contract: "TeePool",
1113
- fn: "addJob",
1114
- eventNames: []
1115
- },
1116
- "TeePool.cancelJob": {
1117
- contract: "TeePool",
1118
- fn: "cancelJob",
1119
- eventNames: []
1120
- },
1121
- "TeePool.claimReward": {
1122
- contract: "TeePool",
1123
- fn: "claimReward",
1124
- eventNames: []
1125
- },
1126
- "TeePool.submitProof": {
1127
- contract: "TeePool",
1128
- fn: "submitProof",
1129
- eventNames: []
1130
- },
1131
- "TeePool.updateFeeRecipient": {
1132
- contract: "TeePool",
1133
- fn: "updateFeeRecipient",
1134
- eventNames: []
1135
- },
1136
- "TeePool.updateJobTimeout": {
1137
- contract: "TeePool",
1138
- fn: "updateJobTimeout",
1139
- eventNames: []
1140
- },
1141
- "TeePool.updateMinJobDuration": {
1142
- contract: "TeePool",
1143
- fn: "updateMinJobDuration",
1144
- eventNames: []
1145
- },
1146
- "TeePoolDedicatedGpu.addTee": {
1147
- contract: "TeePoolDedicatedGpu",
1148
- fn: "addTee",
1149
- eventNames: ["TeeAdded"]
1150
- },
1151
- "TeePoolDedicatedGpu.grantRole": {
1152
- contract: "TeePoolDedicatedGpu",
1153
- fn: "grantRole",
1154
- eventNames: ["RoleGranted"]
1155
- },
1156
- "TeePoolDedicatedGpu.initialize": {
1157
- contract: "TeePoolDedicatedGpu",
1158
- fn: "initialize",
1159
- eventNames: ["Initialized"]
1160
- },
1161
- "TeePoolDedicatedGpu.pause": {
1162
- contract: "TeePoolDedicatedGpu",
1163
- fn: "pause",
1164
- eventNames: ["Paused"]
1165
- },
1166
- "TeePoolDedicatedGpu.removeJob": {
1167
- contract: "TeePoolDedicatedGpu",
1168
- fn: "removeJob",
1169
- eventNames: ["JobRemoved"]
1170
- },
1171
- "TeePoolDedicatedGpu.removeTee": {
1172
- contract: "TeePoolDedicatedGpu",
1173
- fn: "removeTee",
1174
- eventNames: ["TeeRemoved"]
1175
- },
1176
- "TeePoolDedicatedGpu.renounceRole": {
1177
- contract: "TeePoolDedicatedGpu",
1178
- fn: "renounceRole",
1179
- eventNames: ["RoleRevoked"]
1180
- },
1181
- "TeePoolDedicatedGpu.revokeRole": {
1182
- contract: "TeePoolDedicatedGpu",
1183
- fn: "revokeRole",
1184
- eventNames: ["RoleRevoked"]
1185
- },
1186
- "TeePoolDedicatedGpu.submitJob": {
1187
- contract: "TeePoolDedicatedGpu",
1188
- fn: "submitJob",
1189
- eventNames: ["JobSubmitted"]
1190
- },
1191
- "TeePoolDedicatedGpu.unpause": {
1192
- contract: "TeePoolDedicatedGpu",
1193
- fn: "unpause",
1194
- eventNames: ["Unpaused"]
1195
- },
1196
- "TeePoolDedicatedStandard.addTee": {
1197
- contract: "TeePoolDedicatedStandard",
1198
- fn: "addTee",
1199
- eventNames: ["TeeAdded"]
1200
- },
1201
- "TeePoolDedicatedStandard.grantRole": {
1202
- contract: "TeePoolDedicatedStandard",
1203
- fn: "grantRole",
1204
- eventNames: ["RoleGranted"]
1205
- },
1206
- "TeePoolDedicatedStandard.initialize": {
1207
- contract: "TeePoolDedicatedStandard",
1208
- fn: "initialize",
1209
- eventNames: ["Initialized"]
1210
- },
1211
- "TeePoolDedicatedStandard.pause": {
1212
- contract: "TeePoolDedicatedStandard",
1213
- fn: "pause",
1214
- eventNames: ["Paused"]
1215
- },
1216
- "TeePoolDedicatedStandard.removeJob": {
1217
- contract: "TeePoolDedicatedStandard",
1218
- fn: "removeJob",
1219
- eventNames: ["JobRemoved"]
1220
- },
1221
- "TeePoolDedicatedStandard.removeTee": {
1222
- contract: "TeePoolDedicatedStandard",
1223
- fn: "removeTee",
1224
- eventNames: ["TeeRemoved"]
1225
- },
1226
- "TeePoolDedicatedStandard.renounceRole": {
1227
- contract: "TeePoolDedicatedStandard",
1228
- fn: "renounceRole",
1229
- eventNames: ["RoleRevoked"]
1230
- },
1231
- "TeePoolDedicatedStandard.revokeRole": {
1232
- contract: "TeePoolDedicatedStandard",
1233
- fn: "revokeRole",
1234
- eventNames: ["RoleRevoked"]
1235
- },
1236
- "TeePoolDedicatedStandard.submitJob": {
1237
- contract: "TeePoolDedicatedStandard",
1238
- fn: "submitJob",
1239
- eventNames: ["JobSubmitted"]
1240
- },
1241
- "TeePoolDedicatedStandard.unpause": {
1242
- contract: "TeePoolDedicatedStandard",
1243
- fn: "unpause",
1244
- eventNames: ["Unpaused"]
1245
- },
1246
- "TeePoolEphemeralStandard.addTee": {
1247
- contract: "TeePoolEphemeralStandard",
1248
- fn: "addTee",
1249
- eventNames: ["TeeAdded"]
1250
- },
1251
- "TeePoolEphemeralStandard.grantRole": {
1252
- contract: "TeePoolEphemeralStandard",
1253
- fn: "grantRole",
1254
- eventNames: ["RoleGranted"]
1255
- },
1256
- "TeePoolEphemeralStandard.initialize": {
1257
- contract: "TeePoolEphemeralStandard",
1258
- fn: "initialize",
1259
- eventNames: ["Initialized"]
1260
- },
1261
- "TeePoolEphemeralStandard.pause": {
1262
- contract: "TeePoolEphemeralStandard",
1263
- fn: "pause",
1264
- eventNames: ["Paused"]
1265
- },
1266
- "TeePoolEphemeralStandard.removeJob": {
1267
- contract: "TeePoolEphemeralStandard",
1268
- fn: "removeJob",
1269
- eventNames: ["JobRemoved"]
1270
- },
1271
- "TeePoolEphemeralStandard.removeTee": {
1272
- contract: "TeePoolEphemeralStandard",
1273
- fn: "removeTee",
1274
- eventNames: ["TeeRemoved"]
1275
- },
1276
- "TeePoolEphemeralStandard.renounceRole": {
1277
- contract: "TeePoolEphemeralStandard",
1278
- fn: "renounceRole",
1279
- eventNames: ["RoleRevoked"]
1280
- },
1281
- "TeePoolEphemeralStandard.revokeRole": {
1282
- contract: "TeePoolEphemeralStandard",
1283
- fn: "revokeRole",
1284
- eventNames: ["RoleRevoked"]
1285
- },
1286
- "TeePoolEphemeralStandard.submitJob": {
1287
- contract: "TeePoolEphemeralStandard",
1288
- fn: "submitJob",
1289
- eventNames: ["JobSubmitted"]
1290
- },
1291
- "TeePoolEphemeralStandard.unpause": {
1292
- contract: "TeePoolEphemeralStandard",
1293
- fn: "unpause",
1294
- eventNames: ["Unpaused"]
1295
- },
1296
- "TeePoolPersistentGpu.addTee": {
1297
- contract: "TeePoolPersistentGpu",
1298
- fn: "addTee",
1299
- eventNames: ["TeeAdded"]
1300
- },
1301
- "TeePoolPersistentGpu.grantRole": {
1302
- contract: "TeePoolPersistentGpu",
1303
- fn: "grantRole",
1304
- eventNames: ["RoleGranted"]
1305
- },
1306
- "TeePoolPersistentGpu.initialize": {
1307
- contract: "TeePoolPersistentGpu",
1308
- fn: "initialize",
1309
- eventNames: ["Initialized"]
1310
- },
1311
- "TeePoolPersistentGpu.pause": {
1312
- contract: "TeePoolPersistentGpu",
1313
- fn: "pause",
1314
- eventNames: ["Paused"]
1315
- },
1316
- "TeePoolPersistentGpu.removeJob": {
1317
- contract: "TeePoolPersistentGpu",
1318
- fn: "removeJob",
1319
- eventNames: ["JobRemoved"]
1320
- },
1321
- "TeePoolPersistentGpu.removeTee": {
1322
- contract: "TeePoolPersistentGpu",
1323
- fn: "removeTee",
1324
- eventNames: ["TeeRemoved"]
1325
- },
1326
- "TeePoolPersistentGpu.renounceRole": {
1327
- contract: "TeePoolPersistentGpu",
1328
- fn: "renounceRole",
1329
- eventNames: ["RoleRevoked"]
1330
- },
1331
- "TeePoolPersistentGpu.revokeRole": {
1332
- contract: "TeePoolPersistentGpu",
1333
- fn: "revokeRole",
1334
- eventNames: ["RoleRevoked"]
1335
- },
1336
- "TeePoolPersistentGpu.submitJob": {
1337
- contract: "TeePoolPersistentGpu",
1338
- fn: "submitJob",
1339
- eventNames: ["JobSubmitted"]
1340
- },
1341
- "TeePoolPersistentGpu.unpause": {
1342
- contract: "TeePoolPersistentGpu",
1343
- fn: "unpause",
1344
- eventNames: ["Unpaused"]
1345
- },
1346
- "TeePoolPersistentStandard.addTee": {
1347
- contract: "TeePoolPersistentStandard",
1348
- fn: "addTee",
1349
- eventNames: ["TeeAdded"]
1350
- },
1351
- "TeePoolPersistentStandard.grantRole": {
1352
- contract: "TeePoolPersistentStandard",
1353
- fn: "grantRole",
1354
- eventNames: ["RoleGranted"]
1355
- },
1356
- "TeePoolPersistentStandard.initialize": {
1357
- contract: "TeePoolPersistentStandard",
1358
- fn: "initialize",
1359
- eventNames: ["Initialized"]
1360
- },
1361
- "TeePoolPersistentStandard.pause": {
1362
- contract: "TeePoolPersistentStandard",
1363
- fn: "pause",
1364
- eventNames: ["Paused"]
1365
- },
1366
- "TeePoolPersistentStandard.removeJob": {
1367
- contract: "TeePoolPersistentStandard",
1368
- fn: "removeJob",
1369
- eventNames: ["JobRemoved"]
1370
- },
1371
- "TeePoolPersistentStandard.removeTee": {
1372
- contract: "TeePoolPersistentStandard",
1373
- fn: "removeTee",
1374
- eventNames: ["TeeRemoved"]
1375
- },
1376
- "TeePoolPersistentStandard.renounceRole": {
1377
- contract: "TeePoolPersistentStandard",
1378
- fn: "renounceRole",
1379
- eventNames: ["RoleRevoked"]
1380
- },
1381
- "TeePoolPersistentStandard.revokeRole": {
1382
- contract: "TeePoolPersistentStandard",
1383
- fn: "revokeRole",
1384
- eventNames: ["RoleRevoked"]
1385
- },
1386
- "TeePoolPersistentStandard.submitJob": {
1387
- contract: "TeePoolPersistentStandard",
1388
- fn: "submitJob",
1389
- eventNames: ["JobSubmitted"]
1390
- },
1391
- "TeePoolPersistentStandard.unpause": {
1392
- contract: "TeePoolPersistentStandard",
1393
- fn: "unpause",
1394
- eventNames: ["Unpaused"]
1395
- },
1396
- "TeePoolPhala.addTee": {
1397
- contract: "TeePoolPhala",
1398
- fn: "addTee",
1399
- eventNames: ["TeeAdded"]
1400
- },
1401
- "TeePoolPhala.grantRole": {
1402
- contract: "TeePoolPhala",
1403
- fn: "grantRole",
1404
- eventNames: ["RoleGranted"]
1405
- },
1406
- "TeePoolPhala.initialize": {
1407
- contract: "TeePoolPhala",
1408
- fn: "initialize",
1409
- eventNames: ["Initialized"]
1410
- },
1411
- "TeePoolPhala.pause": {
1412
- contract: "TeePoolPhala",
1413
- fn: "pause",
1414
- eventNames: ["Paused"]
1415
- },
1416
- "TeePoolPhala.removeTee": {
1417
- contract: "TeePoolPhala",
1418
- fn: "removeTee",
1419
- eventNames: ["TeeRemoved"]
1420
- },
1421
- "TeePoolPhala.renounceRole": {
1422
- contract: "TeePoolPhala",
1423
- fn: "renounceRole",
1424
- eventNames: ["RoleRevoked"]
1425
- },
1426
- "TeePoolPhala.requestContributionProof": {
1427
- contract: "TeePoolPhala",
1428
- fn: "requestContributionProof",
1429
- eventNames: ["JobSubmitted"]
1430
- },
1431
- "TeePoolPhala.revokeRole": {
1432
- contract: "TeePoolPhala",
1433
- fn: "revokeRole",
1434
- eventNames: ["RoleRevoked"]
1435
- },
1436
- "TeePoolPhala.submitJob": {
1437
- contract: "TeePoolPhala",
1438
- fn: "submitJob",
1439
- eventNames: ["JobSubmitted"]
1440
- },
1441
- "TeePoolPhala.unpause": {
1442
- contract: "TeePoolPhala",
1443
- fn: "unpause",
1444
- eventNames: ["Unpaused"]
1445
- },
1446
- "TeePoolPhala.upgradeToAndCall": {
1447
- contract: "TeePoolPhala",
1448
- fn: "upgradeToAndCall",
1449
- eventNames: ["Upgraded"]
1450
- },
1451
- "VanaEpoch.forceFinalizedEpoch": {
1452
- contract: "VanaEpoch",
1453
- fn: "forceFinalizedEpoch",
1454
- eventNames: ["EpochFinalized"]
1455
- },
1456
- "VanaEpoch.grantRole": {
1457
- contract: "VanaEpoch",
1458
- fn: "grantRole",
1459
- eventNames: ["RoleGranted"]
1460
- },
1461
- "VanaEpoch.initialize": {
1462
- contract: "VanaEpoch",
1463
- fn: "initialize",
1464
- eventNames: ["Initialized"]
1465
- },
1466
- "VanaEpoch.overrideEpochDlpReward": {
1467
- contract: "VanaEpoch",
1468
- fn: "overrideEpochDlpReward",
1469
- eventNames: ["EpochDlpRewardOverridden"]
1470
- },
1471
- "VanaEpoch.pause": {
1472
- contract: "VanaEpoch",
1473
- fn: "pause",
1474
- eventNames: ["Paused"]
1475
- },
1476
- "VanaEpoch.renounceRole": {
1477
- contract: "VanaEpoch",
1478
- fn: "renounceRole",
1479
- eventNames: ["RoleRevoked"]
1480
- },
1481
- "VanaEpoch.revokeRole": {
1482
- contract: "VanaEpoch",
1483
- fn: "revokeRole",
1484
- eventNames: ["RoleRevoked"]
1485
- },
1486
- "VanaEpoch.saveEpochDlpRewards": {
1487
- contract: "VanaEpoch",
1488
- fn: "saveEpochDlpRewards",
1489
- eventNames: ["EpochDlpRewardAdded", "EpochFinalized"]
1490
- },
1491
- "VanaEpoch.unpause": {
1492
- contract: "VanaEpoch",
1493
- fn: "unpause",
1494
- eventNames: ["Unpaused"]
1495
- },
1496
- "VanaEpoch.updateDaySize": {
1497
- contract: "VanaEpoch",
1498
- fn: "updateDaySize",
1499
- eventNames: ["EpochDayUpdated"]
1500
- },
1501
- "VanaEpoch.updateEpoch": {
1502
- contract: "VanaEpoch",
1503
- fn: "updateEpoch",
1504
- eventNames: ["EpochCreated", "EpochUpdated"]
1505
- },
1506
- "VanaEpoch.updateEpochRewardAmount": {
1507
- contract: "VanaEpoch",
1508
- fn: "updateEpochRewardAmount",
1509
- eventNames: ["EpochRewardAmountUpdated"]
1510
- },
1511
- "VanaEpoch.updateEpochSize": {
1512
- contract: "VanaEpoch",
1513
- fn: "updateEpochSize",
1514
- eventNames: ["EpochSizeUpdated"]
1515
- },
1516
- "VanaEpoch.upgradeToAndCall": {
1517
- contract: "VanaEpoch",
1518
- fn: "upgradeToAndCall",
1519
- eventNames: ["Upgraded"]
1520
- },
1521
- "VanaPoolEntity.addRewards": {
1522
- contract: "VanaPoolEntity",
1523
- fn: "addRewards",
1524
- eventNames: ["RewardsAdded"]
1525
- },
1526
- "VanaPoolEntity.createEntity": {
1527
- contract: "VanaPoolEntity",
1528
- fn: "createEntity",
1529
- eventNames: ["EntityCreated", "EntityStatusUpdated"]
1530
- },
1531
- "VanaPoolEntity.grantRole": {
1532
- contract: "VanaPoolEntity",
1533
- fn: "grantRole",
1534
- eventNames: ["RoleGranted"]
1535
- },
1536
- "VanaPoolEntity.initialize": {
1537
- contract: "VanaPoolEntity",
1538
- fn: "initialize",
1539
- eventNames: ["Initialized"]
1540
- },
1541
- "VanaPoolEntity.pause": {
1542
- contract: "VanaPoolEntity",
1543
- fn: "pause",
1544
- eventNames: ["Paused"]
1545
- },
1546
- "VanaPoolEntity.processRewards": {
1547
- contract: "VanaPoolEntity",
1548
- fn: "processRewards",
1549
- eventNames: ["RewardsProcessed"]
1550
- },
1551
- "VanaPoolEntity.renounceRole": {
1552
- contract: "VanaPoolEntity",
1553
- fn: "renounceRole",
1554
- eventNames: ["RoleRevoked"]
1555
- },
1556
- "VanaPoolEntity.revokeRole": {
1557
- contract: "VanaPoolEntity",
1558
- fn: "revokeRole",
1559
- eventNames: ["RoleRevoked"]
1560
- },
1561
- "VanaPoolEntity.unpause": {
1562
- contract: "VanaPoolEntity",
1563
- fn: "unpause",
1564
- eventNames: ["Unpaused"]
1565
- },
1566
- "VanaPoolEntity.updateEntity": {
1567
- contract: "VanaPoolEntity",
1568
- fn: "updateEntity",
1569
- eventNames: ["EntityUpdated"]
1570
- },
1571
- "VanaPoolEntity.updateEntityMaxAPY": {
1572
- contract: "VanaPoolEntity",
1573
- fn: "updateEntityMaxAPY",
1574
- eventNames: ["EntityMaxAPYUpdated", "RewardsProcessed"]
1575
- },
1576
- "VanaPoolEntity.upgradeToAndCall": {
1577
- contract: "VanaPoolEntity",
1578
- fn: "upgradeToAndCall",
1579
- eventNames: ["Upgraded"]
1580
- },
1581
- "VanaPoolStaking.claimRewards": {
1582
- contract: "VanaPoolStaking",
1583
- fn: "claimRewards",
1584
- eventNames: []
1585
- },
1586
- "VanaPoolStaking.grantRole": {
1587
- contract: "VanaPoolStaking",
1588
- fn: "grantRole",
1589
- eventNames: ["RoleGranted"]
1590
- },
1591
- "VanaPoolStaking.initialize": {
1592
- contract: "VanaPoolStaking",
1593
- fn: "initialize",
1594
- eventNames: ["Initialized"]
1595
- },
1596
- "VanaPoolStaking.pause": {
1597
- contract: "VanaPoolStaking",
1598
- fn: "pause",
1599
- eventNames: ["Paused"]
1600
- },
1601
- "VanaPoolStaking.registerEntityStake": {
1602
- contract: "VanaPoolStaking",
1603
- fn: "registerEntityStake",
1604
- eventNames: ["Staked"]
1605
- },
1606
- "VanaPoolStaking.renounceRole": {
1607
- contract: "VanaPoolStaking",
1608
- fn: "renounceRole",
1609
- eventNames: ["RoleRevoked"]
1610
- },
1611
- "VanaPoolStaking.revokeRole": {
1612
- contract: "VanaPoolStaking",
1613
- fn: "revokeRole",
1614
- eventNames: ["RoleRevoked"]
1615
- },
1616
- "VanaPoolStaking.stake": {
1617
- contract: "VanaPoolStaking",
1618
- fn: "stake",
1619
- eventNames: ["Staked"]
1620
- },
1621
- "VanaPoolStaking.unpause": {
1622
- contract: "VanaPoolStaking",
1623
- fn: "unpause",
1624
- eventNames: ["Unpaused"]
1625
- },
1626
- "VanaPoolStaking.unstake": {
1627
- contract: "VanaPoolStaking",
1628
- fn: "unstake",
1629
- eventNames: ["Unstaked"]
1630
- },
1631
- "VanaPoolStaking.updateMinStakeAmount": {
1632
- contract: "VanaPoolStaking",
1633
- fn: "updateMinStakeAmount",
1634
- eventNames: ["MinStakeUpdated"]
1635
- },
1636
- "VanaPoolStaking.upgradeToAndCall": {
1637
- contract: "VanaPoolStaking",
1638
- fn: "upgradeToAndCall",
1639
- eventNames: ["Upgraded"]
1640
- },
1641
- "VanaPoolTreasury.allocateFunds": {
1642
- contract: "VanaPoolTreasury",
1643
- fn: "allocateFunds",
1644
- eventNames: []
1645
- },
1646
- "VanaPoolTreasury.deposit": {
1647
- contract: "VanaPoolTreasury",
1648
- fn: "deposit",
1649
- eventNames: []
1650
- },
1651
- "VanaPoolTreasury.grantRole": {
1652
- contract: "VanaPoolTreasury",
1653
- fn: "grantRole",
1654
- eventNames: ["RoleGranted"]
1655
- },
1656
- "VanaPoolTreasury.initialize": {
1657
- contract: "VanaPoolTreasury",
1658
- fn: "initialize",
1659
- eventNames: ["Initialized"]
1660
- },
1661
- "VanaPoolTreasury.pause": {
1662
- contract: "VanaPoolTreasury",
1663
- fn: "pause",
1664
- eventNames: ["Paused"]
1665
- },
1666
- "VanaPoolTreasury.renounceRole": {
1667
- contract: "VanaPoolTreasury",
1668
- fn: "renounceRole",
1669
- eventNames: ["RoleRevoked"]
1670
- },
1671
- "VanaPoolTreasury.revokeRole": {
1672
- contract: "VanaPoolTreasury",
1673
- fn: "revokeRole",
1674
- eventNames: ["RoleRevoked"]
1675
- },
1676
- "VanaPoolTreasury.unpause": {
1677
- contract: "VanaPoolTreasury",
1678
- fn: "unpause",
1679
- eventNames: ["Unpaused"]
1680
- },
1681
- "VanaPoolTreasury.updateBudget": {
1682
- contract: "VanaPoolTreasury",
1683
- fn: "updateBudget",
1684
- eventNames: []
1685
- },
1686
- "VanaPoolTreasury.updateTreasuryAddress": {
1687
- contract: "VanaPoolTreasury",
1688
- fn: "updateTreasuryAddress",
1689
- eventNames: []
1690
- },
1691
- "VanaPoolTreasury.upgradeToAndCall": {
1692
- contract: "VanaPoolTreasury",
1693
- fn: "upgradeToAndCall",
1694
- eventNames: ["Upgraded"]
1695
- },
1696
- "VanaPoolTreasury.withdraw": {
1697
- contract: "VanaPoolTreasury",
1698
- fn: "withdraw",
1699
- eventNames: []
1700
- }
1701
- };
1702
- const TOPIC_TO_ABIS = /* @__PURE__ */ new Map([
1703
- [
1704
- "0x017b1c583db0d753e82f5a7f7b94f64603f7e401eb2c40271a8edce1431cf09e",
1705
- [
1706
- {
1707
- anonymous: false,
1708
- inputs: [
1709
- {
1710
- indexed: false,
1711
- internalType: "uint256",
1712
- name: "epochId",
1713
- type: "uint256"
1714
- },
1715
- {
1716
- indexed: false,
1717
- internalType: "uint256",
1718
- name: "startBlock",
1719
- type: "uint256"
1720
- },
1721
- {
1722
- indexed: false,
1723
- internalType: "uint256",
1724
- name: "endBlock",
1725
- type: "uint256"
1726
- },
1727
- {
1728
- indexed: false,
1729
- internalType: "uint256",
1730
- name: "rewardAmount",
1731
- type: "uint256"
1732
- }
1733
- ],
1734
- name: "EpochCreated",
1735
- type: "event"
1736
- }
1737
- ]
1738
- ],
1739
- [
1740
- "0x0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31",
1741
- [
1742
- {
1743
- anonymous: false,
1744
- inputs: [],
1745
- name: "EIP712DomainChanged",
1746
- type: "event"
1747
- }
1748
- ]
1749
- ],
1750
- [
1751
- "0x13351629ca30f2a87ba5f6af1bd14d50cb200148aa96ec180bad6668cfb38a20",
1752
- [
1753
- {
1754
- anonymous: false,
1755
- inputs: [
1756
- {
1757
- indexed: true,
1758
- internalType: "uint256",
1759
- name: "epochId",
1760
- type: "uint256"
1761
- },
1762
- {
1763
- indexed: true,
1764
- internalType: "uint256",
1765
- name: "dlpId",
1766
- type: "uint256"
1767
- },
1768
- {
1769
- indexed: false,
1770
- internalType: "uint256",
1771
- name: "tradingVolumeScorePenalty",
1772
- type: "uint256"
1773
- },
1774
- {
1775
- indexed: false,
1776
- internalType: "uint256",
1777
- name: "uniqueContributorsScorePenalty",
1778
- type: "uint256"
1779
- },
1780
- {
1781
- indexed: false,
1782
- internalType: "uint256",
1783
- name: "dataAccessFeesScorePenalty",
1784
- type: "uint256"
1785
- }
1786
- ],
1787
- name: "EpochDlpPenaltyUpdated",
1788
- type: "event"
1789
- }
1790
- ]
1791
- ],
1792
- [
1793
- "0x17700ceb1658b18206f427c1578048e87504106b14ec69e9b4586d9a95174a32",
1794
- [
1795
- {
1796
- anonymous: false,
1797
- inputs: [
1798
- {
1799
- indexed: true,
1800
- internalType: "uint256",
1801
- name: "entityId",
1802
- type: "uint256"
1803
- },
1804
- {
1805
- indexed: true,
1806
- internalType: "address",
1807
- name: "staker",
1808
- type: "address"
1809
- },
1810
- {
1811
- indexed: false,
1812
- internalType: "uint256",
1813
- name: "amount",
1814
- type: "uint256"
1815
- },
1816
- {
1817
- indexed: false,
1818
- internalType: "uint256",
1819
- name: "sharesIssued",
1820
- type: "uint256"
1821
- }
1822
- ],
1823
- name: "Staked",
1824
- type: "event"
1825
- }
1826
- ]
1827
- ],
1828
- [
1829
- "0x18a003b29a5d1b1d6f0603956003fdc00a42ea8db3825c24a6bf532d5bae0bdf",
1830
- [
1831
- {
1832
- anonymous: false,
1833
- inputs: [
1834
- {
1835
- indexed: true,
1836
- internalType: "address",
1837
- name: "teeAddress",
1838
- type: "address"
1839
- }
1840
- ],
1841
- name: "TeeRemoved",
1842
- type: "event"
1843
- }
1844
- ]
1845
- ],
1846
- [
1847
- "0x1bace2b9ccc89d67d840a89b412ec371627fdba942715a6226aec894c66f4ad2",
1848
- [
1849
- {
1850
- anonymous: false,
1851
- inputs: [
1852
- {
1853
- indexed: true,
1854
- internalType: "uint256",
1855
- name: "entityId",
1856
- type: "uint256"
1857
- },
1858
- {
1859
- indexed: false,
1860
- internalType: "uint256",
1861
- name: "distributedAmount",
1862
- type: "uint256"
1863
- }
1864
- ],
1865
- name: "RewardsProcessed",
1866
- type: "event"
1867
- }
1868
- ]
1869
- ],
1870
- [
1871
- "0x26d641f490c3ef8f9e4e06b320b40715123f4c3dd42cf3e3c9eedaad9a10a91c",
1872
- [
1873
- {
1874
- anonymous: false,
1875
- inputs: [
1876
- {
1877
- indexed: true,
1878
- internalType: "uint256",
1879
- name: "fileId",
1880
- type: "uint256"
1881
- },
1882
- {
1883
- indexed: true,
1884
- internalType: "uint256",
1885
- name: "refinerId",
1886
- type: "uint256"
1887
- },
1888
- {
1889
- indexed: false,
1890
- internalType: "string",
1891
- name: "url",
1892
- type: "string"
1893
- }
1894
- ],
1895
- name: "RefinementUpdated",
1896
- type: "event"
1897
- }
1898
- ]
1899
- ],
1900
- [
1901
- "0x27acf0dfa49783328b0f6b3cf96a7301f7a1eac9ab08791912c0d55616327e85",
1902
- [
1903
- {
1904
- anonymous: false,
1905
- inputs: [
1906
- {
1907
- indexed: true,
1908
- internalType: "uint256",
1909
- name: "dlpId",
1910
- type: "uint256"
1911
- },
1912
- {
1913
- indexed: true,
1914
- internalType: "address",
1915
- name: "dlpTreasuryAddress",
1916
- type: "address"
1917
- },
1918
- {
1919
- indexed: true,
1920
- internalType: "address",
1921
- name: "token",
1922
- type: "address"
1923
- },
1924
- {
1925
- indexed: false,
1926
- internalType: "uint256",
1927
- name: "amount",
1928
- type: "uint256"
1929
- }
1930
- ],
1931
- name: "DlpPaymentClaimed",
1932
- type: "event"
1933
- }
1934
- ]
1935
- ],
1936
- [
1937
- "0x290ce03462744f867c8a1d24b17c1c7568a1339dbf9c82c59bcfecbd6d2186b6",
1938
- [
1939
- {
1940
- anonymous: false,
1941
- inputs: [
1942
- {
1943
- indexed: false,
1944
- internalType: "enum IComputeEngineTeePool.HardwareType",
1945
- name: "newHardwareType",
1946
- type: "uint8"
1947
- }
1948
- ],
1949
- name: "HardwareTypeUpdated",
1950
- type: "event"
1951
- }
1952
- ]
1953
- ],
1954
- [
1955
- "0x2980b13036c0d9df6b71ea9e9c09536efd24d7dd1868e29aa730f0c3fbd1a0dc",
1956
- [
1957
- {
1958
- anonymous: false,
1959
- inputs: [
1960
- {
1961
- indexed: true,
1962
- internalType: "uint256",
1963
- name: "fileId",
1964
- type: "uint256"
1965
- },
1966
- {
1967
- indexed: true,
1968
- internalType: "address",
1969
- name: "ownerAddress",
1970
- type: "address"
1971
- },
1972
- {
1973
- indexed: false,
1974
- internalType: "string",
1975
- name: "url",
1976
- type: "string"
1977
- }
1978
- ],
1979
- name: "FileAdded",
1980
- type: "event"
1981
- }
1982
- ]
1983
- ],
1984
- [
1985
- "0x2ce2df96b3f88dc893c7d10d38553c8f1abbcf5e25a0c5b13030f5d85d4b1f08",
1986
- [
1987
- {
1988
- anonymous: false,
1989
- inputs: [
1990
- {
1991
- indexed: true,
1992
- internalType: "uint256",
1993
- name: "fileId",
1994
- type: "uint256"
1995
- },
1996
- {
1997
- indexed: true,
1998
- internalType: "uint256",
1999
- name: "refinerId",
2000
- type: "uint256"
2001
- },
2002
- {
2003
- indexed: false,
2004
- internalType: "string",
2005
- name: "url",
2006
- type: "string"
2007
- }
2008
- ],
2009
- name: "RefinementAdded",
2010
- type: "event"
2011
- }
2012
- ]
2013
- ],
2014
- [
2015
- "0x2cff87230608e71ec991ee7212c0cc861c08b275ecc30716cdc7681cc0fdc288",
2016
- [
2017
- {
2018
- anonymous: false,
2019
- inputs: [
2020
- {
2021
- indexed: true,
2022
- internalType: "uint256",
2023
- name: "permissionId",
2024
- type: "uint256"
2025
- },
2026
- {
2027
- indexed: true,
2028
- internalType: "address",
2029
- name: "user",
2030
- type: "address"
2031
- },
2032
- {
2033
- indexed: true,
2034
- internalType: "uint256",
2035
- name: "granteeId",
2036
- type: "uint256"
2037
- },
2038
- {
2039
- indexed: false,
2040
- internalType: "string",
2041
- name: "grant",
2042
- type: "string"
2043
- },
2044
- {
2045
- indexed: false,
2046
- internalType: "uint256[]",
2047
- name: "fileIds",
2048
- type: "uint256[]"
2049
- }
2050
- ],
2051
- name: "PermissionAdded",
2052
- type: "event"
2053
- }
2054
- ]
2055
- ],
2056
- [
2057
- "0x2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d",
2058
- [
2059
- {
2060
- anonymous: false,
2061
- inputs: [
2062
- {
2063
- indexed: true,
2064
- internalType: "bytes32",
2065
- name: "role",
2066
- type: "bytes32"
2067
- },
2068
- {
2069
- indexed: true,
2070
- internalType: "address",
2071
- name: "account",
2072
- type: "address"
2073
- },
2074
- {
2075
- indexed: true,
2076
- internalType: "address",
2077
- name: "sender",
2078
- type: "address"
2079
- }
2080
- ],
2081
- name: "RoleGranted",
2082
- type: "event"
2083
- }
2084
- ]
2085
- ],
2086
- [
2087
- "0x2fe8cb48ce95af273ee232223c3a0fbda25a65208753e99801ce508751f2b7fb",
2088
- [
2089
- {
2090
- anonymous: false,
2091
- inputs: [
2092
- {
2093
- indexed: false,
2094
- internalType: "uint256",
2095
- name: "newEpochRewardAmount",
2096
- type: "uint256"
2097
- }
2098
- ],
2099
- name: "EpochRewardAmountUpdated",
2100
- type: "event"
2101
- }
2102
- ]
2103
- ],
2104
- [
2105
- "0x3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f",
2106
- [
2107
- {
2108
- anonymous: false,
2109
- inputs: [
2110
- {
2111
- indexed: true,
2112
- internalType: "address",
2113
- name: "delegator",
2114
- type: "address"
2115
- },
2116
- {
2117
- indexed: true,
2118
- internalType: "address",
2119
- name: "fromDelegate",
2120
- type: "address"
2121
- },
2122
- {
2123
- indexed: true,
2124
- internalType: "address",
2125
- name: "toDelegate",
2126
- type: "address"
2127
- }
2128
- ],
2129
- name: "DelegateChanged",
2130
- type: "event"
2131
- }
2132
- ]
2133
- ],
2134
- [
2135
- "0x32009efb3b9fd643bad87a5bcff3fe0872cc599da290475cec2231b6e668d8a7",
2136
- [
2137
- {
2138
- anonymous: false,
2139
- inputs: [
2140
- {
2141
- indexed: false,
2142
- internalType: "uint256",
2143
- name: "epochId",
2144
- type: "uint256"
2145
- },
2146
- {
2147
- indexed: false,
2148
- internalType: "uint256",
2149
- name: "dlpId",
2150
- type: "uint256"
2151
- },
2152
- {
2153
- indexed: false,
2154
- internalType: "uint256",
2155
- name: "rewardAmount",
2156
- type: "uint256"
2157
- },
2158
- {
2159
- indexed: false,
2160
- internalType: "uint256",
2161
- name: "penaltyAmount",
2162
- type: "uint256"
2163
- }
2164
- ],
2165
- name: "EpochDlpRewardAdded",
2166
- type: "event"
2167
- }
2168
- ]
2169
- ],
2170
- [
2171
- "0x33b65b0a9a715aea3bbcf1e054d4012e3752f2a4a98447c61b14be6fa587df5d",
2172
- [
2173
- {
2174
- anonymous: false,
2175
- inputs: [
2176
- {
2177
- indexed: true,
2178
- internalType: "address",
2179
- name: "teeAddress",
2180
- type: "address"
2181
- },
2182
- {
2183
- indexed: false,
2184
- internalType: "string",
2185
- name: "url",
2186
- type: "string"
2187
- },
2188
- {
2189
- indexed: false,
2190
- internalType: "string",
2191
- name: "publicKey",
2192
- type: "string"
2193
- }
2194
- ],
2195
- name: "TeeAdded",
2196
- type: "event"
2197
- }
2198
- ]
2199
- ],
2200
- [
2201
- "0x385b21b54e2348e690dec29e9741026142b02eaabfcc2fcb676cebcb7cd16534",
2202
- [
2203
- {
2204
- anonymous: false,
2205
- inputs: [
2206
- { indexed: true, internalType: "address", name: "", type: "address" }
2207
- ],
2208
- name: "AddressUnblocked",
2209
- type: "event"
2210
- }
2211
- ]
2212
- ],
2213
- [
2214
- "0x3bb166e4137315c91d732d88cef4a9ce0c0f75492f23704ea0b80e885144846c",
2215
- [
2216
- {
2217
- anonymous: false,
2218
- inputs: [
2219
- {
2220
- indexed: true,
2221
- internalType: "address",
2222
- name: "wallet",
2223
- type: "address"
2224
- },
2225
- {
2226
- indexed: true,
2227
- internalType: "address",
2228
- name: "beneficiary",
2229
- type: "address"
2230
- },
2231
- {
2232
- indexed: false,
2233
- internalType: "uint64",
2234
- name: "start",
2235
- type: "uint64"
2236
- },
2237
- {
2238
- indexed: false,
2239
- internalType: "uint64",
2240
- name: "cliff",
2241
- type: "uint64"
2242
- },
2243
- {
2244
- indexed: false,
2245
- internalType: "uint64",
2246
- name: "duration",
2247
- type: "uint64"
2248
- },
2249
- {
2250
- indexed: false,
2251
- internalType: "uint256",
2252
- name: "amount",
2253
- type: "uint256"
2254
- }
2255
- ],
2256
- name: "VestingWalletCreated",
2257
- type: "event"
2258
- }
2259
- ]
2260
- ],
2261
- [
2262
- "0x3c5d8e2b4dedd285c347941d3f9f922359ba9821c0db27bbd73c8d2090191e4e",
2263
- [
2264
- {
2265
- anonymous: false,
2266
- inputs: [
2267
- {
2268
- indexed: true,
2269
- internalType: "address",
2270
- name: "sender",
2271
- type: "address"
2272
- },
2273
- {
2274
- indexed: true,
2275
- internalType: "address",
2276
- name: "recipient",
2277
- type: "address"
2278
- },
2279
- {
2280
- indexed: true,
2281
- internalType: "address",
2282
- name: "token",
2283
- type: "address"
2284
- },
2285
- {
2286
- indexed: false,
2287
- internalType: "uint256",
2288
- name: "usedVanaForReward",
2289
- type: "uint256"
2290
- },
2291
- {
2292
- indexed: false,
2293
- internalType: "uint256",
2294
- name: "tokenRewardAmount",
2295
- type: "uint256"
2296
- },
2297
- {
2298
- indexed: false,
2299
- internalType: "uint256",
2300
- name: "usedVanaForLp",
2301
- type: "uint256"
2302
- },
2303
- {
2304
- indexed: false,
2305
- internalType: "uint256",
2306
- name: "liquidityDelta",
2307
- type: "uint256"
2308
- },
2309
- {
2310
- indexed: false,
2311
- internalType: "uint256",
2312
- name: "spareVana",
2313
- type: "uint256"
2314
- },
2315
- {
2316
- indexed: false,
2317
- internalType: "uint256",
2318
- name: "spareToken",
2319
- type: "uint256"
2320
- }
2321
- ],
2322
- name: "Reward",
2323
- type: "event"
2324
- }
2325
- ]
2326
- ],
2327
- [
2328
- "0x3c8b774b3cc0f2fdfe02c6d8263d345cd4ca81be1636bbd90a2ebc2d4866c289",
2329
- [
2330
- {
2331
- anonymous: false,
2332
- inputs: [
2333
- {
2334
- indexed: true,
2335
- internalType: "uint256",
2336
- name: "jobId",
2337
- type: "uint256"
2338
- },
2339
- {
2340
- indexed: true,
2341
- internalType: "address",
2342
- name: "teePoolAddress",
2343
- type: "address"
2344
- },
2345
- {
2346
- indexed: false,
2347
- internalType: "address",
2348
- name: "teeAddress",
2349
- type: "address"
2350
- }
2351
- ],
2352
- name: "TeeAssignmentSucceeded",
2353
- type: "event"
2354
- }
2355
- ]
2356
- ],
2357
- [
2358
- "0x3cd59cf395448ba3bfd2541dcb31ccd800b9e303281df0888a62ae5d5f673f58",
2359
- [
2360
- {
2361
- anonymous: false,
2362
- inputs: [
2363
- {
2364
- indexed: false,
2365
- internalType: "uint256",
2366
- name: "newEpochSize",
2367
- type: "uint256"
2368
- }
2369
- ],
2370
- name: "EpochSizeUpdated",
2371
- type: "event"
2372
- }
2373
- ]
2374
- ],
2375
- [
2376
- "0x3f2c2e74f8183acb3a3ecca3d7993216d3026a732399784c4143f5f4b631e56a",
2377
- [
2378
- {
2379
- anonymous: false,
2380
- inputs: [
2381
- {
2382
- indexed: true,
2383
- internalType: "uint256",
2384
- name: "dlpId",
2385
- type: "uint256"
2386
- },
2387
- {
2388
- indexed: false,
2389
- internalType: "address",
2390
- name: "tokenAddress",
2391
- type: "address"
2392
- }
2393
- ],
2394
- name: "DlpTokenUpdated",
2395
- type: "event"
2396
- }
2397
- ]
2398
- ],
2399
- [
2400
- "0x40df43107e8b4d467127964bd3c966687c0a6a39aaede970755397fd09535e98",
2401
- [
2402
- {
2403
- anonymous: false,
2404
- inputs: [
2405
- {
2406
- indexed: true,
2407
- internalType: "uint256",
2408
- name: "entityId",
2409
- type: "uint256"
2410
- },
2411
- {
2412
- indexed: false,
2413
- internalType: "uint256",
2414
- name: "amount",
2415
- type: "uint256"
2416
- }
2417
- ],
2418
- name: "RewardsAdded",
2419
- type: "event"
2420
- }
2421
- ]
2422
- ],
2423
- [
2424
- "0x41eb9d6336d189fb4bf444a6b5056628c51aa4405c87f7389a107686e8057263",
2425
- [
2426
- {
2427
- anonymous: false,
2428
- inputs: [
2429
- {
2430
- indexed: true,
2431
- internalType: "address",
2432
- name: "attestator",
2433
- type: "address"
2434
- },
2435
- {
2436
- indexed: true,
2437
- internalType: "uint256",
2438
- name: "jobId",
2439
- type: "uint256"
2440
- },
2441
- {
2442
- indexed: true,
2443
- internalType: "uint256",
2444
- name: "fileId",
2445
- type: "uint256"
2446
- }
2447
- ],
2448
- name: "ProofAdded",
2449
- type: "event"
2450
- }
2451
- ]
2452
- ],
2453
- [
2454
- "0x45b07ce1a3b95a3c1a77c50855721549f744c3b35dcdb9586af21fd2f25219ee",
2455
- [
2456
- {
2457
- anonymous: false,
2458
- inputs: [
2459
- {
2460
- indexed: true,
2461
- internalType: "uint256",
2462
- name: "jobId",
2463
- type: "uint256"
2464
- },
2465
- {
2466
- indexed: true,
2467
- internalType: "address",
2468
- name: "ownerAddress",
2469
- type: "address"
2470
- }
2471
- ],
2472
- name: "JobRegistered",
2473
- type: "event"
2474
- }
2475
- ]
2476
- ],
2477
- [
2478
- "0x4700587a90f43e584ef58af08d40dd9622ca3ee15baa07dc9d58ecf43b598324",
2479
- [
2480
- {
2481
- anonymous: false,
2482
- inputs: [
2483
- {
2484
- indexed: true,
2485
- internalType: "uint256",
2486
- name: "fileId",
2487
- type: "uint256"
2488
- },
2489
- {
2490
- indexed: true,
2491
- internalType: "address",
2492
- name: "ownerAddress",
2493
- type: "address"
2494
- },
2495
- {
2496
- indexed: false,
2497
- internalType: "string",
2498
- name: "url",
2499
- type: "string"
2500
- },
2501
- {
2502
- indexed: false,
2503
- internalType: "uint256",
2504
- name: "schemaId",
2505
- type: "uint256"
2506
- }
2507
- ],
2508
- name: "FileAddedV2",
2509
- type: "event"
2510
- }
2511
- ]
2512
- ],
2513
- [
2514
- "0x47ab46f2c8d4258304a2f5551c1cbdb6981be49631365d1ba7191288a73f39ef",
2515
- [
2516
- {
2517
- anonymous: false,
2518
- inputs: [
2519
- {
2520
- indexed: false,
2521
- internalType: "uint256",
2522
- name: "newMinStake",
2523
- type: "uint256"
2524
- }
2525
- ],
2526
- name: "MinStakeUpdated",
2527
- type: "event"
2528
- }
2529
- ]
2530
- ],
2531
- [
2532
- "0x489e923ac6ba31ef19d89736ac6998000e3fe5b1d1f26174a2c12e02393aa67e",
2533
- [
2534
- {
2535
- anonymous: false,
2536
- inputs: [
2537
- {
2538
- indexed: true,
2539
- internalType: "uint256",
2540
- name: "jobId",
2541
- type: "uint256"
2542
- },
2543
- {
2544
- indexed: true,
2545
- internalType: "uint256",
2546
- name: "fileId",
2547
- type: "uint256"
2548
- },
2549
- {
2550
- indexed: false,
2551
- internalType: "address",
2552
- name: "teeAddress",
2553
- type: "address"
2554
- },
2555
- {
2556
- indexed: false,
2557
- internalType: "uint256",
2558
- name: "bidAmount",
2559
- type: "uint256"
2560
- }
2561
- ],
2562
- name: "JobSubmitted",
2563
- type: "event"
2564
- }
2565
- ]
2566
- ],
2567
- [
2568
- "0x5548c837ab068cf56a2c2479df0882a4922fd203edb7517321831d95078c5f62",
2569
- [
2570
- {
2571
- anonymous: false,
2572
- inputs: [
2573
- {
2574
- indexed: true,
2575
- internalType: "address",
2576
- name: "account",
2577
- type: "address"
2578
- },
2579
- {
2580
- indexed: true,
2581
- internalType: "address",
2582
- name: "token",
2583
- type: "address"
2584
- },
2585
- {
2586
- indexed: false,
2587
- internalType: "uint256",
2588
- name: "amount",
2589
- type: "uint256"
2590
- }
2591
- ],
2592
- name: "Deposit",
2593
- type: "event"
2594
- }
2595
- ]
2596
- ],
2597
- [
2598
- "0x5638b17c6d36df4d34cc61377e2edad4ce8fe16efac2a0ce923121159e585010",
2599
- [
2600
- {
2601
- anonymous: false,
2602
- inputs: [
2603
- {
2604
- indexed: false,
2605
- internalType: "uint256",
2606
- name: "epochId",
2607
- type: "uint256"
2608
- },
2609
- {
2610
- indexed: false,
2611
- internalType: "uint256",
2612
- name: "dlpId",
2613
- type: "uint256"
2614
- },
2615
- {
2616
- indexed: false,
2617
- internalType: "uint256",
2618
- name: "oldBonusAmount",
2619
- type: "uint256"
2620
- },
2621
- {
2622
- indexed: false,
2623
- internalType: "uint256",
2624
- name: "newBonusAmount",
2625
- type: "uint256"
2626
- }
2627
- ],
2628
- name: "EpochDlpBonusUpdated",
2629
- type: "event"
2630
- }
2631
- ]
2632
- ],
2633
- [
2634
- "0x5915e09309d8c49870559891647e368d0ab0e6d94a0ce7f3c9f39470ccbe03d2",
2635
- [
2636
- {
2637
- anonymous: false,
2638
- inputs: [
2639
- {
2640
- indexed: true,
2641
- internalType: "uint256",
2642
- name: "permissionId",
2643
- type: "uint256"
2644
- },
2645
- {
2646
- indexed: false,
2647
- internalType: "bool",
2648
- name: "approved",
2649
- type: "bool"
2650
- }
2651
- ],
2652
- name: "PermissionApprovalUpdated",
2653
- type: "event"
2654
- }
2655
- ]
2656
- ],
2657
- [
2658
- "0x5af3b114dddfd44680542ae7249f451fe090600c3ce4d7b44c0da517f245d569",
2659
- [
2660
- {
2661
- anonymous: false,
2662
- inputs: [
2663
- {
2664
- indexed: true,
2665
- internalType: "uint256",
2666
- name: "epochId",
2667
- type: "uint256"
2668
- },
2669
- {
2670
- indexed: true,
2671
- internalType: "uint256",
2672
- name: "dlpId",
2673
- type: "uint256"
2674
- },
2675
- {
2676
- indexed: false,
2677
- internalType: "uint256",
2678
- name: "distributedAmount",
2679
- type: "uint256"
2680
- },
2681
- {
2682
- indexed: false,
2683
- internalType: "uint256",
2684
- name: "totalPenaltyAmount",
2685
- type: "uint256"
2686
- }
2687
- ],
2688
- name: "EpochDlpPenaltyDistributed",
2689
- type: "event"
2690
- }
2691
- ]
2692
- ],
2693
- [
2694
- "0x5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa",
2695
- [
2696
- {
2697
- anonymous: false,
2698
- inputs: [
2699
- {
2700
- indexed: false,
2701
- internalType: "address",
2702
- name: "account",
2703
- type: "address"
2704
- }
2705
- ],
2706
- name: "Unpaused",
2707
- type: "event"
2708
- }
2709
- ]
2710
- ],
2711
- [
2712
- "0x62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258",
2713
- [
2714
- {
2715
- anonymous: false,
2716
- inputs: [
2717
- {
2718
- indexed: false,
2719
- internalType: "address",
2720
- name: "account",
2721
- type: "address"
2722
- }
2723
- ],
2724
- name: "Paused",
2725
- type: "event"
2726
- }
2727
- ]
2728
- ],
2729
- [
2730
- "0x63792737c309757efad02dff578bab5f702acaba5d648620b286dd83beccb599",
2731
- [
2732
- {
2733
- anonymous: false,
2734
- inputs: [
2735
- {
2736
- indexed: false,
2737
- internalType: "uint256",
2738
- name: "newDaySize",
2739
- type: "uint256"
2740
- }
2741
- ],
2742
- name: "EpochDayUpdated",
2743
- type: "event"
2744
- }
2745
- ]
2746
- ],
2747
- [
2748
- "0x6501ba8882f36c4ef484e985502dbdeddd70c71882c427b897f7976de450cbea",
2749
- [
2750
- {
2751
- anonymous: false,
2752
- inputs: [
2753
- {
2754
- indexed: true,
2755
- internalType: "uint256",
2756
- name: "dlpId",
2757
- type: "uint256"
2758
- },
2759
- {
2760
- indexed: false,
2761
- internalType: "uint256",
2762
- name: "lpTokenId",
2763
- type: "uint256"
2764
- }
2765
- ],
2766
- name: "DlpLpTokenIdUpdated",
2767
- type: "event"
2768
- }
2769
- ]
2770
- ],
2771
- [
2772
- "0x66f9a9bffa3173cfd88573ba6e37b71c50501deae5c916c376815859973f7e47",
2773
- [
2774
- {
2775
- anonymous: false,
2776
- inputs: [
2777
- {
2778
- indexed: true,
2779
- internalType: "uint256",
2780
- name: "entityId",
2781
- type: "uint256"
2782
- },
2783
- {
2784
- indexed: false,
2785
- internalType: "uint256",
2786
- name: "newMaxAPY",
2787
- type: "uint256"
2788
- }
2789
- ],
2790
- name: "EntityMaxAPYUpdated",
2791
- type: "event"
2792
- }
2793
- ]
2794
- ],
2795
- [
2796
- "0x68444dd5a0550c4162ef61805448ef75592e95aec6adf91a535383c69a37a582",
2797
- [
2798
- {
2799
- anonymous: false,
2800
- inputs: [
2801
- {
2802
- indexed: true,
2803
- internalType: "uint256",
2804
- name: "jobId",
2805
- type: "uint256"
2806
- },
2807
- {
2808
- indexed: false,
2809
- internalType: "bytes",
2810
- name: "reason",
2811
- type: "bytes"
2812
- }
2813
- ],
2814
- name: "TeeAssignmentFailed",
2815
- type: "event"
2816
- }
2817
- ]
2818
- ],
2819
- [
2820
- "0x68a66a704ceacc38da3f12c63779e47866d9d72e875ec5d43237777adc666d65",
2821
- [
2822
- {
2823
- anonymous: false,
2824
- inputs: [
2825
- {
2826
- indexed: true,
2827
- internalType: "uint256",
2828
- name: "jobId",
2829
- type: "uint256"
2830
- }
2831
- ],
2832
- name: "JobCanceled",
2833
- type: "event"
2834
- }
2835
- ]
2836
- ],
2837
- [
2838
- "0x6daba074dba7f6e2f5fd289e20080bf7047e96329b083fc1dab326fbefd762bb",
2839
- [
2840
- {
2841
- anonymous: false,
2842
- inputs: [
2843
- {
2844
- indexed: true,
2845
- internalType: "uint256",
2846
- name: "jobId",
2847
- type: "uint256"
2848
- }
2849
- ],
2850
- name: "JobRemoved",
2851
- type: "event"
2852
- }
2853
- ]
2854
- ],
2855
- [
2856
- "0x6e0403ef2b13328247bf9260ad8dd9c18fb5a18b95ea25de817ca991da05929b",
2857
- [
2858
- {
2859
- anonymous: false,
2860
- inputs: [
2861
- {
2862
- indexed: true,
2863
- internalType: "uint256",
2864
- name: "fileId",
2865
- type: "uint256"
2866
- },
2867
- {
2868
- indexed: true,
2869
- internalType: "address",
2870
- name: "account",
2871
- type: "address"
2872
- }
2873
- ],
2874
- name: "PermissionGranted",
2875
- type: "event"
2876
- }
2877
- ]
2878
- ],
2879
- [
2880
- "0x6fd2fa3d57f2e53cf8912029fe8105e05f231c89175122d32ad7ebe79281a9a1",
2881
- [
2882
- {
2883
- anonymous: false,
2884
- inputs: [
2885
- {
2886
- indexed: true,
2887
- internalType: "address",
2888
- name: "token",
2889
- type: "address"
2890
- },
2891
- {
2892
- indexed: true,
2893
- internalType: "bytes32",
2894
- name: "salt",
2895
- type: "bytes32"
2896
- },
2897
- {
2898
- indexed: false,
2899
- internalType: "string",
2900
- name: "name",
2901
- type: "string"
2902
- },
2903
- {
2904
- indexed: false,
2905
- internalType: "string",
2906
- name: "symbol",
2907
- type: "string"
2908
- },
2909
- {
2910
- indexed: false,
2911
- internalType: "address",
2912
- name: "owner",
2913
- type: "address"
2914
- },
2915
- {
2916
- indexed: false,
2917
- internalType: "uint256",
2918
- name: "cap",
2919
- type: "uint256"
2920
- }
2921
- ],
2922
- name: "DATCreated",
2923
- type: "event"
2924
- }
2925
- ]
2926
- ],
2927
- [
2928
- "0x71e52c6f4049fe22c5428eeaa0409df0cd7c897f716a9a0fa8b95851f8d608a2",
2929
- [
2930
- {
2931
- anonymous: false,
2932
- inputs: [
2933
- {
2934
- indexed: true,
2935
- internalType: "uint256",
2936
- name: "granteeId",
2937
- type: "uint256"
2938
- },
2939
- {
2940
- indexed: true,
2941
- internalType: "address",
2942
- name: "owner",
2943
- type: "address"
2944
- },
2945
- {
2946
- indexed: true,
2947
- internalType: "address",
2948
- name: "granteeAddress",
2949
- type: "address"
2950
- },
2951
- {
2952
- indexed: false,
2953
- internalType: "string",
2954
- name: "publicKey",
2955
- type: "string"
2956
- }
2957
- ],
2958
- name: "GranteeRegistered",
2959
- type: "event"
2960
- }
2961
- ]
2962
- ],
2963
- [
2964
- "0x71fa9c99da9552de60a9ccf693f5a91456cbb8c205c8e532b1f55339903543cf",
2965
- [
2966
- {
2967
- anonymous: false,
2968
- inputs: [
2969
- { indexed: true, internalType: "address", name: "", type: "address" }
2970
- ],
2971
- name: "AddressBlocked",
2972
- type: "event"
2973
- }
2974
- ]
2975
- ],
2976
- [
2977
- "0x722508f612f32b765b27ca15934c5c89806cdecd1ecd4b83631a9d12d15ddac3",
2978
- [
2979
- {
2980
- anonymous: false,
2981
- inputs: [
2982
- {
2983
- indexed: true,
2984
- internalType: "uint256",
2985
- name: "dlpId",
2986
- type: "uint256"
2987
- },
2988
- {
2989
- indexed: true,
2990
- internalType: "address",
2991
- name: "dlpAddress",
2992
- type: "address"
2993
- },
2994
- {
2995
- indexed: false,
2996
- internalType: "address",
2997
- name: "ownerAddress",
2998
- type: "address"
2999
- },
3000
- {
3001
- indexed: false,
3002
- internalType: "address",
3003
- name: "treasuryAddress",
3004
- type: "address"
3005
- },
3006
- {
3007
- indexed: false,
3008
- internalType: "string",
3009
- name: "name",
3010
- type: "string"
3011
- },
3012
- {
3013
- indexed: false,
3014
- internalType: "string",
3015
- name: "iconUrl",
3016
- type: "string"
3017
- },
3018
- {
3019
- indexed: false,
3020
- internalType: "string",
3021
- name: "website",
3022
- type: "string"
3023
- },
3024
- {
3025
- indexed: false,
3026
- internalType: "string",
3027
- name: "metadata",
3028
- type: "string"
3029
- }
3030
- ],
3031
- name: "DlpUpdated",
3032
- type: "event"
3033
- }
3034
- ]
3035
- ],
3036
- [
3037
- "0x7412027f2d81b758163c26c866f9ce4ab666a843e33bec6153fbc5032edd1bcc",
3038
- [
3039
- {
3040
- anonymous: false,
3041
- inputs: [
3042
- {
3043
- indexed: false,
3044
- internalType: "uint256",
3045
- name: "newBondingPeriod",
3046
- type: "uint256"
3047
- }
3048
- ],
3049
- name: "BondingPeriodUpdated",
3050
- type: "event"
3051
- }
3052
- ]
3053
- ],
3054
- [
3055
- "0x750e6bbedd4312ada35caa75e07fc0b85f1a6fc9c675e6962aef846918711097",
3056
- [
3057
- {
3058
- anonymous: false,
3059
- inputs: [
3060
- {
3061
- indexed: true,
3062
- internalType: "address",
3063
- name: "token",
3064
- type: "address"
3065
- },
3066
- {
3067
- indexed: false,
3068
- internalType: "uint256",
3069
- name: "amount",
3070
- type: "uint256"
3071
- },
3072
- {
3073
- indexed: false,
3074
- internalType: "uint256",
3075
- name: "jobId",
3076
- type: "uint256"
3077
- },
3078
- {
3079
- indexed: false,
3080
- internalType: "uint256",
3081
- name: "refinerId",
3082
- type: "uint256"
3083
- }
3084
- ],
3085
- name: "PaymentReceived",
3086
- type: "event"
3087
- }
3088
- ]
3089
- ],
3090
- [
3091
- "0x77c6570970c38bcbef0f4075021f00b93c11bf5ecdb11f0a03db50dcbf584ad8",
3092
- [
3093
- {
3094
- anonymous: false,
3095
- inputs: [
3096
- {
3097
- indexed: true,
3098
- internalType: "uint256",
3099
- name: "dlpId",
3100
- type: "uint256"
3101
- },
3102
- {
3103
- indexed: false,
3104
- internalType: "enum IDLPRegistry.DlpStatus",
3105
- name: "newStatus",
3106
- type: "uint8"
3107
- }
3108
- ],
3109
- name: "DlpStatusUpdated",
3110
- type: "event"
3111
- }
3112
- ]
3113
- ],
3114
- [
3115
- "0x7e10352322059a1551895fd08eeb01cf1941c19a078c5725b53e17ec77217082",
3116
- [
3117
- {
3118
- anonymous: false,
3119
- inputs: [
3120
- {
3121
- indexed: true,
3122
- internalType: "uint256",
3123
- name: "entityId",
3124
- type: "uint256"
3125
- },
3126
- {
3127
- indexed: true,
3128
- internalType: "address",
3129
- name: "ownerAddress",
3130
- type: "address"
3131
- }
3132
- ],
3133
- name: "EntityStakeRegistered",
3134
- type: "event"
3135
- }
3136
- ]
3137
- ],
3138
- [
3139
- "0x7f5bfe3018715b26a7067888a5c42912fbb3485170b8154ea9a448661f2f0de2",
3140
- [
3141
- {
3142
- anonymous: false,
3143
- inputs: [
3144
- {
3145
- indexed: true,
3146
- internalType: "uint256",
3147
- name: "jobId",
3148
- type: "uint256"
3149
- },
3150
- {
3151
- indexed: true,
3152
- internalType: "address",
3153
- name: "token",
3154
- type: "address"
3155
- },
3156
- {
3157
- indexed: false,
3158
- internalType: "uint256",
3159
- name: "amount",
3160
- type: "uint256"
3161
- }
3162
- ],
3163
- name: "PaymentExecuted",
3164
- type: "event"
3165
- }
3166
- ]
3167
- ],
3168
- [
3169
- "0x8190b61b2b9df10a827d92935819f66f3b1550edb0f0758af099ea3672873151",
3170
- [
3171
- {
3172
- anonymous: false,
3173
- inputs: [
3174
- {
3175
- indexed: false,
3176
- internalType: "enum IComputeEngineTeePool.TeePoolType",
3177
- name: "newTeePoolType",
3178
- type: "uint8"
3179
- }
3180
- ],
3181
- name: "TeePoolTypeUpdated",
3182
- type: "event"
3183
- }
3184
- ]
3185
- ],
3186
- [
3187
- "0x81fcb2f447f377b0f52d7c0ba6265f7369561e352e3279ac76480983f81f319c",
3188
- [
3189
- {
3190
- anonymous: false,
3191
- inputs: [
3192
- {
3193
- indexed: true,
3194
- internalType: "uint256",
3195
- name: "dlpId",
3196
- type: "uint256"
3197
- },
3198
- {
3199
- indexed: true,
3200
- internalType: "address",
3201
- name: "dlpAddress",
3202
- type: "address"
3203
- },
3204
- {
3205
- indexed: false,
3206
- internalType: "address",
3207
- name: "ownerAddress",
3208
- type: "address"
3209
- },
3210
- {
3211
- indexed: false,
3212
- internalType: "address",
3213
- name: "treasuryAddress",
3214
- type: "address"
3215
- },
3216
- {
3217
- indexed: false,
3218
- internalType: "string",
3219
- name: "name",
3220
- type: "string"
3221
- },
3222
- {
3223
- indexed: false,
3224
- internalType: "string",
3225
- name: "iconUrl",
3226
- type: "string"
3227
- },
3228
- {
3229
- indexed: false,
3230
- internalType: "string",
3231
- name: "website",
3232
- type: "string"
3233
- },
3234
- {
3235
- indexed: false,
3236
- internalType: "string",
3237
- name: "metadata",
3238
- type: "string"
3239
- }
3240
- ],
3241
- name: "DlpRegistered",
3242
- type: "event"
3243
- }
3244
- ]
3245
- ],
3246
- [
3247
- "0x872cb0aacd34968c9f40170e4e29f6edb40dd473cd4a4662992a32f09bb54724",
3248
- [
3249
- {
3250
- anonymous: false,
3251
- inputs: [
3252
- {
3253
- indexed: true,
3254
- internalType: "uint256",
3255
- name: "epochId",
3256
- type: "uint256"
3257
- },
3258
- {
3259
- indexed: true,
3260
- internalType: "uint256",
3261
- name: "dlpId",
3262
- type: "uint256"
3263
- },
3264
- {
3265
- indexed: true,
3266
- internalType: "uint256",
3267
- name: "trancheId",
3268
- type: "uint256"
3269
- },
3270
- {
3271
- indexed: false,
3272
- internalType: "uint256",
3273
- name: "trancheAmount",
3274
- type: "uint256"
3275
- },
3276
- {
3277
- indexed: false,
3278
- internalType: "uint256",
3279
- name: "tokenRewardAmount",
3280
- type: "uint256"
3281
- },
3282
- {
3283
- indexed: false,
3284
- internalType: "uint256",
3285
- name: "spareToken",
3286
- type: "uint256"
3287
- },
3288
- {
3289
- indexed: false,
3290
- internalType: "uint256",
3291
- name: "spareVana",
3292
- type: "uint256"
3293
- },
3294
- {
3295
- indexed: false,
3296
- internalType: "uint256",
3297
- name: "usedVanaAmount",
3298
- type: "uint256"
3299
- }
3300
- ],
3301
- name: "EpochDlpRewardDistributed",
3302
- type: "event"
3303
- }
3304
- ]
3305
- ],
3306
- [
3307
- "0x87c4ec2c999f8f02975055f9b959c97108d5a6ab8742d9e2c8a94e9f46fda0ef",
3308
- [
3309
- {
3310
- anonymous: false,
3311
- inputs: [
3312
- {
3313
- indexed: true,
3314
- internalType: "address",
3315
- name: "user",
3316
- type: "address"
3317
- },
3318
- {
3319
- indexed: true,
3320
- internalType: "uint256",
3321
- name: "serverId",
3322
- type: "uint256"
3323
- }
3324
- ],
3325
- name: "ServerTrusted",
3326
- type: "event"
3327
- }
3328
- ]
3329
- ],
3330
- [
3331
- "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
3332
- [
3333
- {
3334
- anonymous: false,
3335
- inputs: [
3336
- {
3337
- indexed: true,
3338
- internalType: "address",
3339
- name: "owner",
3340
- type: "address"
3341
- },
3342
- {
3343
- indexed: true,
3344
- internalType: "address",
3345
- name: "spender",
3346
- type: "address"
3347
- },
3348
- {
3349
- indexed: false,
3350
- internalType: "uint256",
3351
- name: "value",
3352
- type: "uint256"
3353
- }
3354
- ],
3355
- name: "Approval",
3356
- type: "event"
3357
- }
3358
- ]
3359
- ],
3360
- [
3361
- "0x8fc0db93d562284b2140b5ba84181e6d8649504e729013e6a8c704ffb08d04b9",
3362
- [
3363
- {
3364
- anonymous: false,
3365
- inputs: [
3366
- {
3367
- indexed: false,
3368
- internalType: "uint256",
3369
- name: "epochId",
3370
- type: "uint256"
3371
- }
3372
- ],
3373
- name: "EpochFinalized",
3374
- type: "event"
3375
- }
3376
- ]
3377
- ],
3378
- [
3379
- "0x9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb",
3380
- [
3381
- {
3382
- anonymous: false,
3383
- inputs: [
3384
- {
3385
- indexed: true,
3386
- internalType: "address",
3387
- name: "account",
3388
- type: "address"
3389
- },
3390
- {
3391
- indexed: true,
3392
- internalType: "address",
3393
- name: "token",
3394
- type: "address"
3395
- },
3396
- {
3397
- indexed: false,
3398
- internalType: "uint256",
3399
- name: "amount",
3400
- type: "uint256"
3401
- }
3402
- ],
3403
- name: "Withdraw",
3404
- type: "event"
3405
- }
3406
- ]
3407
- ],
3408
- [
3409
- "0xa3f11bc4db6f6dd6ca6cca1428fa937158436e65ce0da289b5a37887b6025638",
3410
- [
3411
- {
3412
- anonymous: false,
3413
- inputs: [
3414
- {
3415
- indexed: true,
3416
- internalType: "uint256",
3417
- name: "jobId",
3418
- type: "uint256"
3419
- },
3420
- {
3421
- indexed: false,
3422
- internalType: "enum IComputeEngine.JobStatus",
3423
- name: "status",
3424
- type: "uint8"
3425
- },
3426
- {
3427
- indexed: false,
3428
- internalType: "string",
3429
- name: "statusMessage",
3430
- type: "string"
3431
- }
3432
- ],
3433
- name: "JobStatusUpdated",
3434
- type: "event"
3435
- }
3436
- ]
3437
- ],
3438
- [
3439
- "0xa7ab1230134c09caa1e7d69e394e58c9774afb4c08d4a13209d3a74a72e0e394",
3440
- [
3441
- {
3442
- anonymous: false,
3443
- inputs: [
3444
- {
3445
- indexed: true,
3446
- internalType: "uint256",
3447
- name: "entityId",
3448
- type: "uint256"
3449
- },
3450
- {
3451
- indexed: false,
3452
- internalType: "enum IVanaPoolEntity.EntityStatus",
3453
- name: "newStatus",
3454
- type: "uint8"
3455
- }
3456
- ],
3457
- name: "EntityStatusUpdated",
3458
- type: "event"
3459
- }
3460
- ]
3461
- ],
3462
- [
3463
- "0xa8fdc3ef22baab43fd31cd482a94de0be672c1b5f522294e8b2ce117095bb1e2",
3464
- [
3465
- {
3466
- anonymous: false,
3467
- inputs: [
3468
- {
3469
- indexed: true,
3470
- internalType: "uint256",
3471
- name: "entityId",
3472
- type: "uint256"
3473
- },
3474
- {
3475
- indexed: false,
3476
- internalType: "uint256",
3477
- name: "amount",
3478
- type: "uint256"
3479
- }
3480
- ],
3481
- name: "ForfeitedRewardsReturned",
3482
- type: "event"
3483
- }
3484
- ]
3485
- ],
3486
- [
3487
- "0xac1cb2ea540715774cd22a890314044f6daf1fb60f81a378e5628ca63efa7110",
3488
- [
3489
- {
3490
- anonymous: false,
3491
- inputs: [
3492
- {
3493
- indexed: true,
3494
- internalType: "uint256",
3495
- name: "dlpId",
3496
- type: "uint256"
3497
- },
3498
- {
3499
- indexed: false,
3500
- internalType: "uint256",
3501
- name: "verificationBlockNumber",
3502
- type: "uint256"
3503
- }
3504
- ],
3505
- name: "DlpVerificationBlockUpdated",
3506
- type: "event"
3507
- }
3508
- ]
3509
- ],
3510
- [
3511
- "0xad1edd3d37e0441e7e8ecebd40bf47260c0d005f2bbb99692ccfcb2fa37b3883",
3512
- [
3513
- {
3514
- anonymous: false,
3515
- inputs: [
3516
- {
3517
- indexed: false,
3518
- internalType: "uint256",
3519
- name: "epochId",
3520
- type: "uint256"
3521
- },
3522
- {
3523
- indexed: false,
3524
- internalType: "uint256",
3525
- name: "startBlock",
3526
- type: "uint256"
3527
- },
3528
- {
3529
- indexed: false,
3530
- internalType: "uint256",
3531
- name: "endBlock",
3532
- type: "uint256"
3533
- },
3534
- {
3535
- indexed: false,
3536
- internalType: "uint256",
3537
- name: "rewardAmount",
3538
- type: "uint256"
3539
- }
3540
- ],
3541
- name: "EpochUpdated",
3542
- type: "event"
3543
- }
3544
- ]
3545
- ],
3546
- [
3547
- "0xb09856dd7ffa0109b70d8ab9f5adc42d21eb00984cb94c428e75eb9e149911c3",
3548
- [
3549
- {
3550
- anonymous: false,
3551
- inputs: [
3552
- {
3553
- indexed: true,
3554
- internalType: "uint256",
3555
- name: "epochId",
3556
- type: "uint256"
3557
- },
3558
- {
3559
- indexed: false,
3560
- internalType: "uint256",
3561
- name: "numberOfTranches",
3562
- type: "uint256"
3563
- },
3564
- {
3565
- indexed: false,
3566
- internalType: "uint256",
3567
- name: "remediationWindow",
3568
- type: "uint256"
3569
- }
3570
- ],
3571
- name: "EpochRewardsInitialized",
3572
- type: "event"
3573
- }
3574
- ]
3575
- ],
3576
- [
3577
- "0xb29e1eca99b3296ba4f60344073d5efc326e3d261617fcaeb23d850d61499bd6",
3578
- [
3579
- {
3580
- anonymous: false,
3581
- inputs: [
3582
- {
3583
- indexed: true,
3584
- internalType: "uint256",
3585
- name: "refinerId",
3586
- type: "uint256"
3587
- },
3588
- {
3589
- indexed: true,
3590
- internalType: "uint256",
3591
- name: "dlpId",
3592
- type: "uint256"
3593
- },
3594
- {
3595
- indexed: false,
3596
- internalType: "string",
3597
- name: "name",
3598
- type: "string"
3599
- },
3600
- {
3601
- indexed: true,
3602
- internalType: "uint256",
3603
- name: "schemaId",
3604
- type: "uint256"
3605
- },
3606
- {
3607
- indexed: false,
3608
- internalType: "string",
3609
- name: "schemaDefinitionUrl",
3610
- type: "string"
3611
- },
3612
- {
3613
- indexed: false,
3614
- internalType: "string",
3615
- name: "refinementInstructionUrl",
3616
- type: "string"
3617
- }
3618
- ],
3619
- name: "RefinerAdded",
3620
- type: "event"
3621
- }
3622
- ]
3623
- ],
3624
- [
3625
- "0xb40aa50daa3e3766bf57657fcede8cec0113cdb04b8653239b4b3837095f16bb",
3626
- [
3627
- {
3628
- anonymous: false,
3629
- inputs: [
3630
- {
3631
- indexed: false,
3632
- internalType: "uint256",
3633
- name: "epochId",
3634
- type: "uint256"
3635
- },
3636
- {
3637
- indexed: false,
3638
- internalType: "uint256",
3639
- name: "dlpId",
3640
- type: "uint256"
3641
- },
3642
- {
3643
- indexed: false,
3644
- internalType: "uint256",
3645
- name: "rewardAmount",
3646
- type: "uint256"
3647
- },
3648
- {
3649
- indexed: false,
3650
- internalType: "uint256",
3651
- name: "penaltyAmount",
3652
- type: "uint256"
3653
- }
3654
- ],
3655
- name: "EpochDlpRewardOverridden",
3656
- type: "event"
3657
- }
3658
- ]
3659
- ],
3660
- [
3661
- "0xb6401d43ec4bc776d2e2724cc2ed348bc74b037aad13c3fea8bb4cf43d113135",
3662
- [
3663
- {
3664
- anonymous: false,
3665
- inputs: [
3666
- {
3667
- indexed: true,
3668
- internalType: "uint256",
3669
- name: "schemaId",
3670
- type: "uint256"
3671
- },
3672
- {
3673
- indexed: false,
3674
- internalType: "string",
3675
- name: "name",
3676
- type: "string"
3677
- },
3678
- {
3679
- indexed: false,
3680
- internalType: "string",
3681
- name: "dialect",
3682
- type: "string"
3683
- },
3684
- {
3685
- indexed: false,
3686
- internalType: "string",
3687
- name: "definitionUrl",
3688
- type: "string"
3689
- }
3690
- ],
3691
- name: "SchemaAdded",
3692
- type: "event"
3693
- }
3694
- ]
3695
- ],
3696
- [
3697
- "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b",
3698
- [
3699
- {
3700
- anonymous: false,
3701
- inputs: [
3702
- {
3703
- indexed: true,
3704
- internalType: "address",
3705
- name: "implementation",
3706
- type: "address"
3707
- }
3708
- ],
3709
- name: "Upgraded",
3710
- type: "event"
3711
- }
3712
- ]
3713
- ],
3714
- [
3715
- "0xbd2f369520a556322443e6986d9103d0bc2f27fe6de3a0987c418b5b95a49233",
3716
- [
3717
- {
3718
- anonymous: false,
3719
- inputs: [
3720
- {
3721
- indexed: true,
3722
- internalType: "uint256",
3723
- name: "computeInstructionId",
3724
- type: "uint256"
3725
- },
3726
- {
3727
- indexed: true,
3728
- internalType: "address",
3729
- name: "owner",
3730
- type: "address"
3731
- },
3732
- {
3733
- indexed: false,
3734
- internalType: "string",
3735
- name: "computeInstructionUrl",
3736
- type: "string"
3737
- },
3738
- {
3739
- indexed: false,
3740
- internalType: "bytes32",
3741
- name: "computeInstructionHash",
3742
- type: "bytes32"
3743
- }
3744
- ],
3745
- name: "ComputeInstructionAdded",
3746
- type: "event"
3747
- }
3748
- ]
3749
- ],
3750
- [
3751
- "0xbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff",
3752
- [
3753
- {
3754
- anonymous: false,
3755
- inputs: [
3756
- {
3757
- indexed: true,
3758
- internalType: "bytes32",
3759
- name: "role",
3760
- type: "bytes32"
3761
- },
3762
- {
3763
- indexed: true,
3764
- internalType: "bytes32",
3765
- name: "previousAdminRole",
3766
- type: "bytes32"
3767
- },
3768
- {
3769
- indexed: true,
3770
- internalType: "bytes32",
3771
- name: "newAdminRole",
3772
- type: "bytes32"
3773
- }
3774
- ],
3775
- name: "RoleAdminChanged",
3776
- type: "event"
3777
- }
3778
- ]
3779
- ],
3780
- [
3781
- "0xc18055339d3481a334f2bf553f5687d28178158490c8ad81a86a4ab03adc3470",
3782
- [
3783
- {
3784
- anonymous: false,
3785
- inputs: [
3786
- {
3787
- indexed: true,
3788
- internalType: "uint256",
3789
- name: "entityId",
3790
- type: "uint256"
3791
- },
3792
- {
3793
- indexed: false,
3794
- internalType: "address",
3795
- name: "ownerAddress",
3796
- type: "address"
3797
- },
3798
- {
3799
- indexed: false,
3800
- internalType: "string",
3801
- name: "name",
3802
- type: "string"
3803
- }
3804
- ],
3805
- name: "EntityUpdated",
3806
- type: "event"
3807
- }
3808
- ]
3809
- ],
3810
- [
3811
- "0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2",
3812
- [
3813
- {
3814
- anonymous: false,
3815
- inputs: [
3816
- {
3817
- indexed: false,
3818
- internalType: "uint64",
3819
- name: "version",
3820
- type: "uint64"
3821
- }
3822
- ],
3823
- name: "Initialized",
3824
- type: "event"
3825
- }
3826
- ]
3827
- ],
3828
- [
3829
- "0xc8a9a6a181cb55eed6156d6dd78a38f724344c00428a256435c007f2bcf35114",
3830
- [
3831
- {
3832
- anonymous: false,
3833
- inputs: [
3834
- {
3835
- indexed: true,
3836
- internalType: "uint256",
3837
- name: "permissionId",
3838
- type: "uint256"
3839
- }
3840
- ],
3841
- name: "PermissionRevoked",
3842
- type: "event"
3843
- }
3844
- ]
3845
- ],
3846
- [
3847
- "0xc8b61e82585cd516b06ef965707f4d12d78f8b47cc837f1221e76d22a50a2404",
3848
- [
3849
- {
3850
- anonymous: false,
3851
- inputs: [
3852
- {
3853
- indexed: false,
3854
- internalType: "uint256",
3855
- name: "tradingVolume",
3856
- type: "uint256"
3857
- },
3858
- {
3859
- indexed: false,
3860
- internalType: "uint256",
3861
- name: "uniqueContributors",
3862
- type: "uint256"
3863
- },
3864
- {
3865
- indexed: false,
3866
- internalType: "uint256",
3867
- name: "dataAccessFees",
3868
- type: "uint256"
3869
- }
3870
- ],
3871
- name: "MetricWeightsUpdated",
3872
- type: "event"
3873
- }
3874
- ]
3875
- ],
3876
- [
3877
- "0xcc7ab74a9b11b56487e4c7356320d0be894972f6132884ccd04e04baa284fb79",
3878
- [
3879
- {
3880
- anonymous: false,
3881
- inputs: [
3882
- {
3883
- indexed: true,
3884
- internalType: "address",
3885
- name: "teeAddress",
3886
- type: "address"
3887
- }
3888
- ],
3889
- name: "TeeAdded",
3890
- type: "event"
3891
- }
3892
- ]
3893
- ],
3894
- [
3895
- "0xce73c17825335ff981a6b1bc04c131fbcfd6ffe1415122c91565e9a1fab057bc",
3896
- [
3897
- {
3898
- anonymous: false,
3899
- inputs: [
3900
- {
3901
- indexed: false,
3902
- internalType: "uint256",
3903
- name: "lastEpoch",
3904
- type: "uint256"
3905
- }
3906
- ],
3907
- name: "LastEpochSet",
3908
- type: "event"
3909
- }
3910
- ]
3911
- ],
3912
- [
3913
- "0xd1f92903a241da12e7ad59502ea174e18036a4a8ae63a8779660577dc47c9e67",
3914
- [
3915
- {
3916
- anonymous: false,
3917
- inputs: [
3918
- {
3919
- indexed: true,
3920
- internalType: "uint256",
3921
- name: "permissionId",
3922
- type: "uint256"
3923
- },
3924
- {
3925
- indexed: true,
3926
- internalType: "address",
3927
- name: "grantee",
3928
- type: "address"
3929
- },
3930
- {
3931
- indexed: true,
3932
- internalType: "uint256",
3933
- name: "refinerId",
3934
- type: "uint256"
3935
- },
3936
- {
3937
- indexed: false,
3938
- internalType: "string",
3939
- name: "tableName",
3940
- type: "string"
3941
- },
3942
- {
3943
- indexed: false,
3944
- internalType: "string",
3945
- name: "columnName",
3946
- type: "string"
3947
- },
3948
- {
3949
- indexed: false,
3950
- internalType: "address",
3951
- name: "tokenAddress",
3952
- type: "address"
3953
- },
3954
- {
3955
- indexed: false,
3956
- internalType: "uint256",
3957
- name: "price",
3958
- type: "uint256"
3959
- }
3960
- ],
3961
- name: "PermissionAdded",
3962
- type: "event"
3963
- }
3964
- ]
3965
- ],
3966
- [
3967
- "0xd5593c4bcad9d8180499c9950bd809941c0e8a8fd9031a740964eab17aacd178",
3968
- [
3969
- {
3970
- anonymous: false,
3971
- inputs: [
3972
- {
3973
- indexed: true,
3974
- internalType: "uint256",
3975
- name: "computeInstructionId",
3976
- type: "uint256"
3977
- },
3978
- {
3979
- indexed: true,
3980
- internalType: "uint256",
3981
- name: "dlpId",
3982
- type: "uint256"
3983
- },
3984
- {
3985
- indexed: false,
3986
- internalType: "bool",
3987
- name: "approved",
3988
- type: "bool"
3989
- }
3990
- ],
3991
- name: "ComputeInstructionUpdated",
3992
- type: "event"
3993
- }
3994
- ]
3995
- ],
3996
- [
3997
- "0xd568f486da04b49b70afcf7b829e7f9e8963338430f4e4befd65129fdc993bf5",
3998
- [
3999
- {
4000
- anonymous: false,
4001
- inputs: [
4002
- {
4003
- indexed: true,
4004
- internalType: "uint256",
4005
- name: "entityId",
4006
- type: "uint256"
4007
- },
4008
- {
4009
- indexed: false,
4010
- internalType: "address",
4011
- name: "ownerAddress",
4012
- type: "address"
4013
- },
4014
- {
4015
- indexed: false,
4016
- internalType: "string",
4017
- name: "name",
4018
- type: "string"
4019
- },
4020
- {
4021
- indexed: false,
4022
- internalType: "uint256",
4023
- name: "maxAPY",
4024
- type: "uint256"
4025
- }
4026
- ],
4027
- name: "EntityCreated",
4028
- type: "event"
4029
- }
4030
- ]
4031
- ],
4032
- [
4033
- "0xd5c5f9c2c466cde03c7a1863dbdcd4afec36e3ae7ce06ccc8b22c447686d3336",
4034
- [
4035
- {
4036
- anonymous: false,
4037
- inputs: [
4038
- {
4039
- indexed: true,
4040
- internalType: "uint256",
4041
- name: "epochId",
4042
- type: "uint256"
4043
- },
4044
- {
4045
- indexed: true,
4046
- internalType: "uint256",
4047
- name: "dlpId",
4048
- type: "uint256"
4049
- },
4050
- {
4051
- indexed: false,
4052
- internalType: "uint256",
4053
- name: "tradingVolume",
4054
- type: "uint256"
4055
- },
4056
- {
4057
- indexed: false,
4058
- internalType: "uint256",
4059
- name: "uniqueContributors",
4060
- type: "uint256"
4061
- },
4062
- {
4063
- indexed: false,
4064
- internalType: "uint256",
4065
- name: "dataAccessFees",
4066
- type: "uint256"
4067
- },
4068
- {
4069
- indexed: false,
4070
- internalType: "uint256",
4071
- name: "tradingVolumeScore",
4072
- type: "uint256"
4073
- },
4074
- {
4075
- indexed: false,
4076
- internalType: "uint256",
4077
- name: "uniqueContributorsScore",
4078
- type: "uint256"
4079
- },
4080
- {
4081
- indexed: false,
4082
- internalType: "uint256",
4083
- name: "dataAccessFeesScore",
4084
- type: "uint256"
4085
- }
4086
- ],
4087
- name: "EpochDlpPerformancesOverridden",
4088
- type: "event"
4089
- }
4090
- ]
4091
- ],
4092
- [
4093
- "0xd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a",
4094
- [
4095
- {
4096
- anonymous: false,
4097
- inputs: [
4098
- {
4099
- indexed: true,
4100
- internalType: "address",
4101
- name: "teeAddress",
4102
- type: "address"
4103
- },
4104
- {
4105
- indexed: false,
4106
- internalType: "uint256",
4107
- name: "amount",
4108
- type: "uint256"
4109
- }
4110
- ],
4111
- name: "Claimed",
4112
- type: "event"
4113
- }
4114
- ]
4115
- ],
4116
- [
4117
- "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
4118
- [
4119
- {
4120
- anonymous: false,
4121
- inputs: [
4122
- {
4123
- indexed: true,
4124
- internalType: "address",
4125
- name: "to",
4126
- type: "address"
4127
- },
4128
- {
4129
- indexed: true,
4130
- internalType: "address",
4131
- name: "token",
4132
- type: "address"
4133
- },
4134
- {
4135
- indexed: false,
4136
- internalType: "uint256",
4137
- name: "amount",
4138
- type: "uint256"
4139
- }
4140
- ],
4141
- name: "Transfer",
4142
- type: "event"
4143
- }
4144
- ]
4145
- ],
4146
- [
4147
- "0xdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724",
4148
- [
4149
- {
4150
- anonymous: false,
4151
- inputs: [
4152
- {
4153
- indexed: true,
4154
- internalType: "address",
4155
- name: "delegate",
4156
- type: "address"
4157
- },
4158
- {
4159
- indexed: false,
4160
- internalType: "uint256",
4161
- name: "previousVotes",
4162
- type: "uint256"
4163
- },
4164
- {
4165
- indexed: false,
4166
- internalType: "uint256",
4167
- name: "newVotes",
4168
- type: "uint256"
4169
- }
4170
- ],
4171
- name: "DelegateVotesChanged",
4172
- type: "event"
4173
- }
4174
- ]
4175
- ],
4176
- [
4177
- "0xe082917d1df24c089c98cea7cf69a4e75e16c9832994eae12359ac6dc8f050cd",
4178
- [
4179
- {
4180
- anonymous: false,
4181
- inputs: [
4182
- {
4183
- indexed: false,
4184
- internalType: "uint256",
4185
- name: "newDlpRegistrationDepositAmount",
4186
- type: "uint256"
4187
- }
4188
- ],
4189
- name: "DlpRegistrationDepositAmountUpdated",
4190
- type: "event"
4191
- }
4192
- ]
4193
- ],
4194
- [
4195
- "0xe11c4b38855d86735092f8c7e790a86765bacd0fe47618b41eb0c5142aea69c8",
4196
- [
4197
- {
4198
- anonymous: false,
4199
- inputs: [
4200
- {
4201
- indexed: true,
4202
- internalType: "uint256",
4203
- name: "dlpId",
4204
- type: "uint256"
4205
- },
4206
- {
4207
- indexed: false,
4208
- internalType: "bool",
4209
- name: "verified",
4210
- type: "bool"
4211
- }
4212
- ],
4213
- name: "DlpVerificationUpdated",
4214
- type: "event"
4215
- }
4216
- ]
4217
- ],
4218
- [
4219
- "0xe5e42fb20f0e680172f6a278ac2230bbf6107e91c64d66d6ae98f9e49c3dc715",
4220
- [
4221
- {
4222
- anonymous: false,
4223
- inputs: [
4224
- {
4225
- indexed: true,
4226
- internalType: "uint256",
4227
- name: "serverId",
4228
- type: "uint256"
4229
- },
4230
- {
4231
- indexed: true,
4232
- internalType: "address",
4233
- name: "owner",
4234
- type: "address"
4235
- },
4236
- {
4237
- indexed: true,
4238
- internalType: "address",
4239
- name: "serverAddress",
4240
- type: "address"
4241
- },
4242
- {
4243
- indexed: false,
4244
- internalType: "string",
4245
- name: "publicKey",
4246
- type: "string"
4247
- },
4248
- {
4249
- indexed: false,
4250
- internalType: "string",
4251
- name: "url",
4252
- type: "string"
4253
- }
4254
- ],
4255
- name: "ServerRegistered",
4256
- type: "event"
4257
- }
4258
- ]
4259
- ],
4260
- [
4261
- "0xe6e4d29c408e4011f6d4dd4d336b135fec34a07efce1d008b9b4309a7c75cdce",
4262
- [
4263
- {
4264
- anonymous: false,
4265
- inputs: [
4266
- {
4267
- indexed: true,
4268
- internalType: "uint256",
4269
- name: "serverId",
4270
- type: "uint256"
4271
- },
4272
- {
4273
- indexed: false,
4274
- internalType: "string",
4275
- name: "url",
4276
- type: "string"
4277
- }
4278
- ],
4279
- name: "ServerUpdated",
4280
- type: "event"
4281
- }
4282
- ]
4283
- ],
4284
- [
4285
- "0xef448dca1e95226d5af380d5817c753c86946ef53cffb238e5fbe889230565c7",
4286
- [
4287
- {
4288
- anonymous: false,
4289
- inputs: [
4290
- {
4291
- indexed: true,
4292
- internalType: "uint256",
4293
- name: "fileId",
4294
- type: "uint256"
4295
- },
4296
- {
4297
- indexed: true,
4298
- internalType: "address",
4299
- name: "ownerAddress",
4300
- type: "address"
4301
- },
4302
- {
4303
- indexed: false,
4304
- internalType: "uint256",
4305
- name: "proofIndex",
4306
- type: "uint256"
4307
- },
4308
- {
4309
- indexed: true,
4310
- internalType: "uint256",
4311
- name: "dlpId",
4312
- type: "uint256"
4313
- },
4314
- {
4315
- indexed: false,
4316
- internalType: "uint256",
4317
- name: "score",
4318
- type: "uint256"
4319
- },
4320
- {
4321
- indexed: false,
4322
- internalType: "string",
4323
- name: "proofUrl",
4324
- type: "string"
4325
- }
4326
- ],
4327
- name: "ProofAdded",
4328
- type: "event"
4329
- }
4330
- ]
4331
- ],
4332
- [
4333
- "0xef887310a4cb477fd13d3c0c1030e11b0295904652f57e0d7f8d42b89c75f63e",
4334
- [
4335
- {
4336
- anonymous: false,
4337
- inputs: [
4338
- {
4339
- indexed: true,
4340
- internalType: "address",
4341
- name: "user",
4342
- type: "address"
4343
- },
4344
- {
4345
- indexed: true,
4346
- internalType: "uint256",
4347
- name: "serverId",
4348
- type: "uint256"
4349
- }
4350
- ],
4351
- name: "ServerUntrusted",
4352
- type: "event"
4353
- }
4354
- ]
4355
- ],
4356
- [
4357
- "0xf1d26b191b1bee9baaf9392419d2859b11482d15e585cb16aa6e73cdc83fba32",
4358
- [
4359
- {
4360
- anonymous: false,
4361
- inputs: [
4362
- {
4363
- indexed: true,
4364
- internalType: "uint256",
4365
- name: "jobId",
4366
- type: "uint256"
4367
- },
4368
- {
4369
- indexed: false,
4370
- internalType: "address",
4371
- name: "teeAddress",
4372
- type: "address"
4373
- }
4374
- ],
4375
- name: "JobSubmitted",
4376
- type: "event"
4377
- }
4378
- ]
4379
- ],
4380
- [
4381
- "0xf6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b",
4382
- [
4383
- {
4384
- anonymous: false,
4385
- inputs: [
4386
- {
4387
- indexed: true,
4388
- internalType: "bytes32",
4389
- name: "role",
4390
- type: "bytes32"
4391
- },
4392
- {
4393
- indexed: true,
4394
- internalType: "address",
4395
- name: "account",
4396
- type: "address"
4397
- },
4398
- {
4399
- indexed: true,
4400
- internalType: "address",
4401
- name: "sender",
4402
- type: "address"
4403
- }
4404
- ],
4405
- name: "RoleRevoked",
4406
- type: "event"
4407
- }
4408
- ]
4409
- ],
4410
- [
4411
- "0xf7436df7219248bc2f072a77aa8be840fb4e86e33d86f21a8f46baa90bf968ce",
4412
- [
4413
- {
4414
- anonymous: false,
4415
- inputs: [
4416
- {
4417
- indexed: true,
4418
- internalType: "uint256",
4419
- name: "epochId",
4420
- type: "uint256"
4421
- },
4422
- {
4423
- indexed: true,
4424
- internalType: "uint256",
4425
- name: "dlpId",
4426
- type: "uint256"
4427
- },
4428
- {
4429
- indexed: false,
4430
- internalType: "uint256",
4431
- name: "tradingVolume",
4432
- type: "uint256"
4433
- },
4434
- {
4435
- indexed: false,
4436
- internalType: "uint256",
4437
- name: "uniqueContributors",
4438
- type: "uint256"
4439
- },
4440
- {
4441
- indexed: false,
4442
- internalType: "uint256",
4443
- name: "dataAccessFees",
4444
- type: "uint256"
4445
- },
4446
- {
4447
- indexed: false,
4448
- internalType: "uint256",
4449
- name: "tradingVolumeScore",
4450
- type: "uint256"
4451
- },
4452
- {
4453
- indexed: false,
4454
- internalType: "uint256",
4455
- name: "uniqueContributorsScore",
4456
- type: "uint256"
4457
- },
4458
- {
4459
- indexed: false,
4460
- internalType: "uint256",
4461
- name: "dataAccessFeesScore",
4462
- type: "uint256"
4463
- }
4464
- ],
4465
- name: "EpochDlpPerformancesSaved",
4466
- type: "event"
4467
- }
4468
- ]
4469
- ],
4470
- [
4471
- "0xffdaf13b1d96bfc2213355f353f84c19493e0681eb0df26f83d862acd266750a",
4472
- [
4473
- {
4474
- anonymous: false,
4475
- inputs: [
4476
- {
4477
- indexed: true,
4478
- internalType: "uint256",
4479
- name: "entityId",
4480
- type: "uint256"
4481
- },
4482
- {
4483
- indexed: true,
4484
- internalType: "address",
4485
- name: "staker",
4486
- type: "address"
4487
- },
4488
- {
4489
- indexed: false,
4490
- internalType: "uint256",
4491
- name: "amount",
4492
- type: "uint256"
4493
- },
4494
- {
4495
- indexed: false,
4496
- internalType: "uint256",
4497
- name: "sharesBurned",
4498
- type: "uint256"
4499
- }
4500
- ],
4501
- name: "Unstaked",
4502
- type: "event"
4503
- }
4504
- ]
4505
- ]
4506
- ]);
4507
- // Annotate the CommonJS export names for ESM import in node:
4508
- 0 && (module.exports = {
4509
- EVENT_REGISTRY,
4510
- TOPIC_TO_ABIS
4511
- });
4512
- //# sourceMappingURL=eventRegistry.cjs.map