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