@sravankumar02/sdk-core 1.0.0

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 (561) hide show
  1. package/LICENSE +11 -0
  2. package/README.md +94 -0
  3. package/out/abi/argSerializer.d.ts +45 -0
  4. package/out/abi/argSerializer.js +171 -0
  5. package/out/abi/argSerializer.js.map +1 -0
  6. package/out/abi/argumentErrorContext.d.ts +12 -0
  7. package/out/abi/argumentErrorContext.js +34 -0
  8. package/out/abi/argumentErrorContext.js.map +1 -0
  9. package/out/abi/code.d.ts +23 -0
  10. package/out/abi/code.js +41 -0
  11. package/out/abi/code.js.map +1 -0
  12. package/out/abi/codec/address.d.ts +24 -0
  13. package/out/abi/codec/address.js +41 -0
  14. package/out/abi/codec/address.js.map +1 -0
  15. package/out/abi/codec/arrayVec.d.ts +11 -0
  16. package/out/abi/codec/arrayVec.js +39 -0
  17. package/out/abi/codec/arrayVec.js.map +1 -0
  18. package/out/abi/codec/binary.d.ts +30 -0
  19. package/out/abi/codec/binary.js +134 -0
  20. package/out/abi/codec/binary.js.map +1 -0
  21. package/out/abi/codec/binaryCodecUtils.d.ts +6 -0
  22. package/out/abi/codec/binaryCodecUtils.js +35 -0
  23. package/out/abi/codec/binaryCodecUtils.js.map +1 -0
  24. package/out/abi/codec/boolean.d.ts +13 -0
  25. package/out/abi/codec/boolean.js +57 -0
  26. package/out/abi/codec/boolean.js.map +1 -0
  27. package/out/abi/codec/bytes.d.ts +11 -0
  28. package/out/abi/codec/bytes.js +30 -0
  29. package/out/abi/codec/bytes.js.map +1 -0
  30. package/out/abi/codec/codemetadata.d.ts +8 -0
  31. package/out/abi/codec/codemetadata.js +23 -0
  32. package/out/abi/codec/codemetadata.js.map +1 -0
  33. package/out/abi/codec/constants.d.ts +1 -0
  34. package/out/abi/codec/constants.js +5 -0
  35. package/out/abi/codec/constants.js.map +1 -0
  36. package/out/abi/codec/enum.d.ts +13 -0
  37. package/out/abi/codec/enum.js +49 -0
  38. package/out/abi/codec/enum.js.map +1 -0
  39. package/out/abi/codec/explicit-enum.d.ts +10 -0
  40. package/out/abi/codec/explicit-enum.js +30 -0
  41. package/out/abi/codec/explicit-enum.js.map +1 -0
  42. package/out/abi/codec/fields.d.ts +9 -0
  43. package/out/abi/codec/fields.js +31 -0
  44. package/out/abi/codec/fields.js.map +1 -0
  45. package/out/abi/codec/h256.d.ts +24 -0
  46. package/out/abi/codec/h256.js +39 -0
  47. package/out/abi/codec/h256.js.map +1 -0
  48. package/out/abi/codec/index.d.ts +6 -0
  49. package/out/abi/codec/index.js +19 -0
  50. package/out/abi/codec/index.js.map +1 -0
  51. package/out/abi/codec/list.d.ts +14 -0
  52. package/out/abi/codec/list.js +67 -0
  53. package/out/abi/codec/list.js.map +1 -0
  54. package/out/abi/codec/managedDecimal.d.ts +11 -0
  55. package/out/abi/codec/managedDecimal.js +53 -0
  56. package/out/abi/codec/managedDecimal.js.map +1 -0
  57. package/out/abi/codec/managedDecimalSigned.d.ts +11 -0
  58. package/out/abi/codec/managedDecimalSigned.js +53 -0
  59. package/out/abi/codec/managedDecimalSigned.js.map +1 -0
  60. package/out/abi/codec/nothing.d.ts +8 -0
  61. package/out/abi/codec/nothing.js +20 -0
  62. package/out/abi/codec/nothing.js.map +1 -0
  63. package/out/abi/codec/numerical.d.ts +13 -0
  64. package/out/abi/codec/numerical.js +122 -0
  65. package/out/abi/codec/numerical.js.map +1 -0
  66. package/out/abi/codec/option.d.ts +14 -0
  67. package/out/abi/codec/option.js +66 -0
  68. package/out/abi/codec/option.js.map +1 -0
  69. package/out/abi/codec/primitive.d.ts +20 -0
  70. package/out/abi/codec/primitive.js +81 -0
  71. package/out/abi/codec/primitive.js.map +1 -0
  72. package/out/abi/codec/string.d.ts +9 -0
  73. package/out/abi/codec/string.js +28 -0
  74. package/out/abi/codec/string.js.map +1 -0
  75. package/out/abi/codec/struct.d.ts +11 -0
  76. package/out/abi/codec/struct.js +30 -0
  77. package/out/abi/codec/struct.js.map +1 -0
  78. package/out/abi/codec/tokenIdentifier.d.ts +9 -0
  79. package/out/abi/codec/tokenIdentifier.js +28 -0
  80. package/out/abi/codec/tokenIdentifier.js.map +1 -0
  81. package/out/abi/codec/tuple.d.ts +11 -0
  82. package/out/abi/codec/tuple.js +23 -0
  83. package/out/abi/codec/tuple.js.map +1 -0
  84. package/out/abi/codec/utils.d.ts +20 -0
  85. package/out/abi/codec/utils.js +69 -0
  86. package/out/abi/codec/utils.js.map +1 -0
  87. package/out/abi/function.d.ts +24 -0
  88. package/out/abi/function.js +56 -0
  89. package/out/abi/function.js.map +1 -0
  90. package/out/abi/index.d.ts +12 -0
  91. package/out/abi/index.js +25 -0
  92. package/out/abi/index.js.map +1 -0
  93. package/out/abi/interaction.d.ts +67 -0
  94. package/out/abi/interaction.js +146 -0
  95. package/out/abi/interaction.js.map +1 -0
  96. package/out/abi/interface.d.ts +85 -0
  97. package/out/abi/interface.js +3 -0
  98. package/out/abi/interface.js.map +1 -0
  99. package/out/abi/nativeSerializer.d.ts +27 -0
  100. package/out/abi/nativeSerializer.js +343 -0
  101. package/out/abi/nativeSerializer.js.map +1 -0
  102. package/out/abi/query.d.ts +18 -0
  103. package/out/abi/query.js +19 -0
  104. package/out/abi/query.js.map +1 -0
  105. package/out/abi/returnCode.d.ts +26 -0
  106. package/out/abi/returnCode.js +45 -0
  107. package/out/abi/returnCode.js.map +1 -0
  108. package/out/abi/smartContract.d.ts +74 -0
  109. package/out/abi/smartContract.js +208 -0
  110. package/out/abi/smartContract.js.map +1 -0
  111. package/out/abi/typeFormula.d.ts +7 -0
  112. package/out/abi/typeFormula.js +20 -0
  113. package/out/abi/typeFormula.js.map +1 -0
  114. package/out/abi/typeFormulaParser.d.ts +14 -0
  115. package/out/abi/typeFormulaParser.js +126 -0
  116. package/out/abi/typeFormulaParser.js.map +1 -0
  117. package/out/abi/typesystem/abi.d.ts +64 -0
  118. package/out/abi/typesystem/abi.js +208 -0
  119. package/out/abi/typesystem/abi.js.map +1 -0
  120. package/out/abi/typesystem/address.d.ts +23 -0
  121. package/out/abi/typesystem/address.js +41 -0
  122. package/out/abi/typesystem/address.js.map +1 -0
  123. package/out/abi/typesystem/algebraic.d.ts +24 -0
  124. package/out/abi/typesystem/algebraic.js +59 -0
  125. package/out/abi/typesystem/algebraic.js.map +1 -0
  126. package/out/abi/typesystem/boolean.d.ts +24 -0
  127. package/out/abi/typesystem/boolean.js +46 -0
  128. package/out/abi/typesystem/boolean.js.map +1 -0
  129. package/out/abi/typesystem/bytes.d.ts +28 -0
  130. package/out/abi/typesystem/bytes.js +58 -0
  131. package/out/abi/typesystem/bytes.js.map +1 -0
  132. package/out/abi/typesystem/codeMetadata.d.ts +11 -0
  133. package/out/abi/typesystem/codeMetadata.js +24 -0
  134. package/out/abi/typesystem/codeMetadata.js.map +1 -0
  135. package/out/abi/typesystem/collections.d.ts +9 -0
  136. package/out/abi/typesystem/collections.js +32 -0
  137. package/out/abi/typesystem/collections.js.map +1 -0
  138. package/out/abi/typesystem/composite.d.ts +16 -0
  139. package/out/abi/typesystem/composite.js +53 -0
  140. package/out/abi/typesystem/composite.js.map +1 -0
  141. package/out/abi/typesystem/endpoint.d.ts +41 -0
  142. package/out/abi/typesystem/endpoint.js +78 -0
  143. package/out/abi/typesystem/endpoint.js.map +1 -0
  144. package/out/abi/typesystem/enum.d.ts +51 -0
  145. package/out/abi/typesystem/enum.js +137 -0
  146. package/out/abi/typesystem/enum.js.map +1 -0
  147. package/out/abi/typesystem/event.d.ts +25 -0
  148. package/out/abi/typesystem/event.js +36 -0
  149. package/out/abi/typesystem/event.js.map +1 -0
  150. package/out/abi/typesystem/explicit-enum.d.ts +33 -0
  151. package/out/abi/typesystem/explicit-enum.js +63 -0
  152. package/out/abi/typesystem/explicit-enum.js.map +1 -0
  153. package/out/abi/typesystem/factory.d.ts +4 -0
  154. package/out/abi/typesystem/factory.js +19 -0
  155. package/out/abi/typesystem/factory.js.map +1 -0
  156. package/out/abi/typesystem/fields.d.ts +24 -0
  157. package/out/abi/typesystem/fields.js +90 -0
  158. package/out/abi/typesystem/fields.js.map +1 -0
  159. package/out/abi/typesystem/generic.d.ts +47 -0
  160. package/out/abi/typesystem/generic.js +120 -0
  161. package/out/abi/typesystem/generic.js.map +1 -0
  162. package/out/abi/typesystem/genericArray.d.ts +17 -0
  163. package/out/abi/typesystem/genericArray.js +44 -0
  164. package/out/abi/typesystem/genericArray.js.map +1 -0
  165. package/out/abi/typesystem/h256.d.ts +18 -0
  166. package/out/abi/typesystem/h256.js +35 -0
  167. package/out/abi/typesystem/h256.js.map +1 -0
  168. package/out/abi/typesystem/index.d.ts +33 -0
  169. package/out/abi/typesystem/index.js +46 -0
  170. package/out/abi/typesystem/index.js.map +1 -0
  171. package/out/abi/typesystem/managedDecimal.d.ts +26 -0
  172. package/out/abi/typesystem/managedDecimal.js +62 -0
  173. package/out/abi/typesystem/managedDecimal.js.map +1 -0
  174. package/out/abi/typesystem/managedDecimalSigned.d.ts +26 -0
  175. package/out/abi/typesystem/managedDecimalSigned.js +62 -0
  176. package/out/abi/typesystem/managedDecimalSigned.js.map +1 -0
  177. package/out/abi/typesystem/matchers.d.ts +51 -0
  178. package/out/abi/typesystem/matchers.js +185 -0
  179. package/out/abi/typesystem/matchers.js.map +1 -0
  180. package/out/abi/typesystem/nothing.d.ts +13 -0
  181. package/out/abi/typesystem/nothing.js +31 -0
  182. package/out/abi/typesystem/nothing.js.map +1 -0
  183. package/out/abi/typesystem/numerical.d.ts +130 -0
  184. package/out/abi/typesystem/numerical.js +286 -0
  185. package/out/abi/typesystem/numerical.js.map +1 -0
  186. package/out/abi/typesystem/string.d.ts +26 -0
  187. package/out/abi/typesystem/string.js +51 -0
  188. package/out/abi/typesystem/string.js.map +1 -0
  189. package/out/abi/typesystem/struct.d.ts +30 -0
  190. package/out/abi/typesystem/struct.js +78 -0
  191. package/out/abi/typesystem/struct.js.map +1 -0
  192. package/out/abi/typesystem/tokenIdentifier.d.ts +21 -0
  193. package/out/abi/typesystem/tokenIdentifier.js +51 -0
  194. package/out/abi/typesystem/tokenIdentifier.js.map +1 -0
  195. package/out/abi/typesystem/tuple.d.ts +16 -0
  196. package/out/abi/typesystem/tuple.js +71 -0
  197. package/out/abi/typesystem/tuple.js.map +1 -0
  198. package/out/abi/typesystem/typeExpressionParser.d.ts +8 -0
  199. package/out/abi/typesystem/typeExpressionParser.js +30 -0
  200. package/out/abi/typesystem/typeExpressionParser.js.map +1 -0
  201. package/out/abi/typesystem/typeMapper.d.ts +20 -0
  202. package/out/abi/typesystem/typeMapper.js +215 -0
  203. package/out/abi/typesystem/typeMapper.js.map +1 -0
  204. package/out/abi/typesystem/types.d.ts +129 -0
  205. package/out/abi/typesystem/types.js +285 -0
  206. package/out/abi/typesystem/types.js.map +1 -0
  207. package/out/abi/typesystem/variadic.d.ts +35 -0
  208. package/out/abi/typesystem/variadic.js +81 -0
  209. package/out/abi/typesystem/variadic.js.map +1 -0
  210. package/out/accountManagement/accountController.d.ts +18 -0
  211. package/out/accountManagement/accountController.js +54 -0
  212. package/out/accountManagement/accountController.js.map +1 -0
  213. package/out/accountManagement/accountTransactionsFactory.d.ts +27 -0
  214. package/out/accountManagement/accountTransactionsFactory.js +78 -0
  215. package/out/accountManagement/accountTransactionsFactory.js.map +1 -0
  216. package/out/accountManagement/index.d.ts +3 -0
  217. package/out/accountManagement/index.js +16 -0
  218. package/out/accountManagement/index.js.map +1 -0
  219. package/out/accountManagement/resources.d.ts +8 -0
  220. package/out/accountManagement/resources.js +3 -0
  221. package/out/accountManagement/resources.js.map +1 -0
  222. package/out/accounts/account.d.ts +94 -0
  223. package/out/accounts/account.js +154 -0
  224. package/out/accounts/account.js.map +1 -0
  225. package/out/accounts/index.d.ts +1 -0
  226. package/out/accounts/index.js +14 -0
  227. package/out/accounts/index.js.map +1 -0
  228. package/out/core/address.d.ts +105 -0
  229. package/out/core/address.js +313 -0
  230. package/out/core/address.js.map +1 -0
  231. package/out/core/asyncTimer.d.ts +27 -0
  232. package/out/core/asyncTimer.js +91 -0
  233. package/out/core/asyncTimer.js.map +1 -0
  234. package/out/core/baseController.d.ts +16 -0
  235. package/out/core/baseController.js +34 -0
  236. package/out/core/baseController.js.map +1 -0
  237. package/out/core/codeMetadata.d.ts +74 -0
  238. package/out/core/codeMetadata.js +146 -0
  239. package/out/core/codeMetadata.js.map +1 -0
  240. package/out/core/compatibility.d.ts +10 -0
  241. package/out/core/compatibility.js +22 -0
  242. package/out/core/compatibility.js.map +1 -0
  243. package/out/core/config.d.ts +15 -0
  244. package/out/core/config.js +20 -0
  245. package/out/core/config.js.map +1 -0
  246. package/out/core/constants.d.ts +28 -0
  247. package/out/core/constants.js +32 -0
  248. package/out/core/constants.js.map +1 -0
  249. package/out/core/errors.d.ts +279 -0
  250. package/out/core/errors.js +437 -0
  251. package/out/core/errors.js.map +1 -0
  252. package/out/core/globals.d.ts +0 -0
  253. package/out/core/globals.js +5 -0
  254. package/out/core/globals.js.map +1 -0
  255. package/out/core/index.d.ts +21 -0
  256. package/out/core/index.js +35 -0
  257. package/out/core/index.js.map +1 -0
  258. package/out/core/interfaces.d.ts +40 -0
  259. package/out/core/interfaces.js +3 -0
  260. package/out/core/interfaces.js.map +1 -0
  261. package/out/core/logger.d.ts +17 -0
  262. package/out/core/logger.js +50 -0
  263. package/out/core/logger.js.map +1 -0
  264. package/out/core/message.d.ts +57 -0
  265. package/out/core/message.js +71 -0
  266. package/out/core/message.js.map +1 -0
  267. package/out/core/networkParams.d.ts +57 -0
  268. package/out/core/networkParams.js +112 -0
  269. package/out/core/networkParams.js.map +1 -0
  270. package/out/core/reflection.d.ts +1 -0
  271. package/out/core/reflection.js +14 -0
  272. package/out/core/reflection.js.map +1 -0
  273. package/out/core/signature.d.ts +17 -0
  274. package/out/core/signature.js +82 -0
  275. package/out/core/signature.js.map +1 -0
  276. package/out/core/smartContractQuery.d.ts +35 -0
  277. package/out/core/smartContractQuery.js +34 -0
  278. package/out/core/smartContractQuery.js.map +1 -0
  279. package/out/core/tokenTransfersDataBuilder.d.ts +10 -0
  280. package/out/core/tokenTransfersDataBuilder.js +44 -0
  281. package/out/core/tokenTransfersDataBuilder.js.map +1 -0
  282. package/out/core/tokens.d.ts +130 -0
  283. package/out/core/tokens.js +287 -0
  284. package/out/core/tokens.js.map +1 -0
  285. package/out/core/transaction.d.ts +263 -0
  286. package/out/core/transaction.js +323 -0
  287. package/out/core/transaction.js.map +1 -0
  288. package/out/core/transactionBuilder.d.ts +32 -0
  289. package/out/core/transactionBuilder.js +45 -0
  290. package/out/core/transactionBuilder.js.map +1 -0
  291. package/out/core/transactionComputer.d.ts +51 -0
  292. package/out/core/transactionComputer.js +163 -0
  293. package/out/core/transactionComputer.js.map +1 -0
  294. package/out/core/transactionEvents.d.ts +17 -0
  295. package/out/core/transactionEvents.js +27 -0
  296. package/out/core/transactionEvents.js.map +1 -0
  297. package/out/core/transactionLogs.d.ts +11 -0
  298. package/out/core/transactionLogs.js +38 -0
  299. package/out/core/transactionLogs.js.map +1 -0
  300. package/out/core/transactionOnNetwork.d.ts +40 -0
  301. package/out/core/transactionOnNetwork.js +164 -0
  302. package/out/core/transactionOnNetwork.js.map +1 -0
  303. package/out/core/transactionStatus.d.ts +45 -0
  304. package/out/core/transactionStatus.js +71 -0
  305. package/out/core/transactionStatus.js.map +1 -0
  306. package/out/core/transactionWatcher.d.ts +48 -0
  307. package/out/core/transactionWatcher.js +148 -0
  308. package/out/core/transactionWatcher.js.map +1 -0
  309. package/out/core/transactionsFactoryConfig.d.ts +54 -0
  310. package/out/core/transactionsFactoryConfig.js +66 -0
  311. package/out/core/transactionsFactoryConfig.js.map +1 -0
  312. package/out/core/utils.codec.d.ts +8 -0
  313. package/out/core/utils.codec.js +75 -0
  314. package/out/core/utils.codec.js.map +1 -0
  315. package/out/core/utils.d.ts +20 -0
  316. package/out/core/utils.js +86 -0
  317. package/out/core/utils.js.map +1 -0
  318. package/out/delegation/delegationController.d.ts +37 -0
  319. package/out/delegation/delegationController.js +215 -0
  320. package/out/delegation/delegationController.js.map +1 -0
  321. package/out/delegation/delegationTransactionsFactory.d.ts +48 -0
  322. package/out/delegation/delegationTransactionsFactory.js +311 -0
  323. package/out/delegation/delegationTransactionsFactory.js.map +1 -0
  324. package/out/delegation/delegationTransactionsOutcomeParser.d.ts +10 -0
  325. package/out/delegation/delegationTransactionsOutcomeParser.js +35 -0
  326. package/out/delegation/delegationTransactionsOutcomeParser.js.map +1 -0
  327. package/out/delegation/index.d.ts +4 -0
  328. package/out/delegation/index.js +17 -0
  329. package/out/delegation/index.js.map +1 -0
  330. package/out/delegation/resources.d.ts +38 -0
  331. package/out/delegation/resources.js +3 -0
  332. package/out/delegation/resources.js.map +1 -0
  333. package/out/entrypoints/config.d.ts +29 -0
  334. package/out/entrypoints/config.js +36 -0
  335. package/out/entrypoints/config.js.map +1 -0
  336. package/out/entrypoints/entrypoints.d.ts +92 -0
  337. package/out/entrypoints/entrypoints.js +203 -0
  338. package/out/entrypoints/entrypoints.js.map +1 -0
  339. package/out/entrypoints/index.d.ts +2 -0
  340. package/out/entrypoints/index.js +15 -0
  341. package/out/entrypoints/index.js.map +1 -0
  342. package/out/governance/governanceController.d.ts +33 -0
  343. package/out/governance/governanceController.js +205 -0
  344. package/out/governance/governanceController.js.map +1 -0
  345. package/out/governance/governanceTransactionsFactory.d.ts +16 -0
  346. package/out/governance/governanceTransactionsFactory.js +99 -0
  347. package/out/governance/governanceTransactionsFactory.js.map +1 -0
  348. package/out/governance/governanceTransactionsOutcomeParser.d.ts +15 -0
  349. package/out/governance/governanceTransactionsOutcomeParser.js +99 -0
  350. package/out/governance/governanceTransactionsOutcomeParser.js.map +1 -0
  351. package/out/governance/index.d.ts +4 -0
  352. package/out/governance/index.js +17 -0
  353. package/out/governance/index.js.map +1 -0
  354. package/out/governance/resources.d.ts +82 -0
  355. package/out/governance/resources.js +11 -0
  356. package/out/governance/resources.js.map +1 -0
  357. package/out/index.d.ts +19 -0
  358. package/out/index.js +32 -0
  359. package/out/index.js.map +1 -0
  360. package/out/multisig/index.d.ts +3 -0
  361. package/out/multisig/index.js +16 -0
  362. package/out/multisig/index.js.map +1 -0
  363. package/out/multisig/multisigController.d.ts +221 -0
  364. package/out/multisig/multisigController.js +540 -0
  365. package/out/multisig/multisigController.js.map +1 -0
  366. package/out/multisig/multisigTransactionsFactory.d.ts +110 -0
  367. package/out/multisig/multisigTransactionsFactory.js +355 -0
  368. package/out/multisig/multisigTransactionsFactory.js.map +1 -0
  369. package/out/multisig/multisigTransactionsOutcomeParser.d.ts +31 -0
  370. package/out/multisig/multisigTransactionsOutcomeParser.js +41 -0
  371. package/out/multisig/multisigTransactionsOutcomeParser.js.map +1 -0
  372. package/out/multisig/proposeTransferExecuteContractInput.d.ts +32 -0
  373. package/out/multisig/proposeTransferExecuteContractInput.js +65 -0
  374. package/out/multisig/proposeTransferExecuteContractInput.js.map +1 -0
  375. package/out/multisig/resources.d.ts +182 -0
  376. package/out/multisig/resources.js +125 -0
  377. package/out/multisig/resources.js.map +1 -0
  378. package/out/networkProviders/accountAwaiter.d.ts +35 -0
  379. package/out/networkProviders/accountAwaiter.js +67 -0
  380. package/out/networkProviders/accountAwaiter.js.map +1 -0
  381. package/out/networkProviders/accounts.d.ts +55 -0
  382. package/out/networkProviders/accounts.js +154 -0
  383. package/out/networkProviders/accounts.js.map +1 -0
  384. package/out/networkProviders/apiNetworkProvider.d.ts +48 -0
  385. package/out/networkProviders/apiNetworkProvider.js +235 -0
  386. package/out/networkProviders/apiNetworkProvider.js.map +1 -0
  387. package/out/networkProviders/blocks.d.ts +48 -0
  388. package/out/networkProviders/blocks.js +76 -0
  389. package/out/networkProviders/blocks.js.map +1 -0
  390. package/out/networkProviders/config.d.ts +6 -0
  391. package/out/networkProviders/config.js +18 -0
  392. package/out/networkProviders/config.js.map +1 -0
  393. package/out/networkProviders/constants.d.ts +9 -0
  394. package/out/networkProviders/constants.js +16 -0
  395. package/out/networkProviders/constants.js.map +1 -0
  396. package/out/networkProviders/contractQueryRequest.d.ts +6 -0
  397. package/out/networkProviders/contractQueryRequest.js +20 -0
  398. package/out/networkProviders/contractQueryRequest.js.map +1 -0
  399. package/out/networkProviders/index.d.ts +11 -0
  400. package/out/networkProviders/index.js +28 -0
  401. package/out/networkProviders/index.js.map +1 -0
  402. package/out/networkProviders/interface.d.ts +110 -0
  403. package/out/networkProviders/interface.js +3 -0
  404. package/out/networkProviders/interface.js.map +1 -0
  405. package/out/networkProviders/networkConfig.d.ts +48 -0
  406. package/out/networkProviders/networkConfig.js +41 -0
  407. package/out/networkProviders/networkConfig.js.map +1 -0
  408. package/out/networkProviders/networkProviderConfig.d.ts +4 -0
  409. package/out/networkProviders/networkProviderConfig.js +3 -0
  410. package/out/networkProviders/networkProviderConfig.js.map +1 -0
  411. package/out/networkProviders/networkStatus.d.ts +31 -0
  412. package/out/networkProviders/networkStatus.js +31 -0
  413. package/out/networkProviders/networkStatus.js.map +1 -0
  414. package/out/networkProviders/proxyNetworkProvider.d.ts +51 -0
  415. package/out/networkProviders/proxyNetworkProvider.js +261 -0
  416. package/out/networkProviders/proxyNetworkProvider.js.map +1 -0
  417. package/out/networkProviders/resources.d.ts +12 -0
  418. package/out/networkProviders/resources.js +29 -0
  419. package/out/networkProviders/resources.js.map +1 -0
  420. package/out/networkProviders/tokenDefinitions.d.ts +49 -0
  421. package/out/networkProviders/tokenDefinitions.js +152 -0
  422. package/out/networkProviders/tokenDefinitions.js.map +1 -0
  423. package/out/networkProviders/tokens.d.ts +40 -0
  424. package/out/networkProviders/tokens.js +106 -0
  425. package/out/networkProviders/tokens.js.map +1 -0
  426. package/out/networkProviders/userAgent.d.ts +2 -0
  427. package/out/networkProviders/userAgent.js +30 -0
  428. package/out/networkProviders/userAgent.js.map +1 -0
  429. package/out/proto/compiled.d.ts +2 -0
  430. package/out/proto/compiled.js +719 -0
  431. package/out/proto/compiled.js.map +1 -0
  432. package/out/proto/index.d.ts +5 -0
  433. package/out/proto/index.js +18 -0
  434. package/out/proto/index.js.map +1 -0
  435. package/out/proto/serializer.d.ts +22 -0
  436. package/out/proto/serializer.js +114 -0
  437. package/out/proto/serializer.js.map +1 -0
  438. package/out/smartContracts/index.d.ts +4 -0
  439. package/out/smartContracts/index.js +17 -0
  440. package/out/smartContracts/index.js.map +1 -0
  441. package/out/smartContracts/resources.d.ts +38 -0
  442. package/out/smartContracts/resources.js +3 -0
  443. package/out/smartContracts/resources.js.map +1 -0
  444. package/out/smartContracts/smartContractController.d.ts +32 -0
  445. package/out/smartContracts/smartContractController.js +128 -0
  446. package/out/smartContracts/smartContractController.js.map +1 -0
  447. package/out/smartContracts/smartContractTransactionsFactory.d.ts +42 -0
  448. package/out/smartContracts/smartContractTransactionsFactory.js +165 -0
  449. package/out/smartContracts/smartContractTransactionsFactory.js.map +1 -0
  450. package/out/smartContracts/smartContractTransactionsOutcomeParser.d.ts +28 -0
  451. package/out/smartContracts/smartContractTransactionsOutcomeParser.js +189 -0
  452. package/out/smartContracts/smartContractTransactionsOutcomeParser.js.map +1 -0
  453. package/out/tokenManagement/index.d.ts +4 -0
  454. package/out/tokenManagement/index.js +17 -0
  455. package/out/tokenManagement/index.js.map +1 -0
  456. package/out/tokenManagement/resources.d.ts +220 -0
  457. package/out/tokenManagement/resources.js +3 -0
  458. package/out/tokenManagement/resources.js.map +1 -0
  459. package/out/tokenManagement/tokenManagementController.d.ts +108 -0
  460. package/out/tokenManagement/tokenManagementController.js +582 -0
  461. package/out/tokenManagement/tokenManagementController.js.map +1 -0
  462. package/out/tokenManagement/tokenManagementTransactionsFactory.d.ts +82 -0
  463. package/out/tokenManagement/tokenManagementTransactionsFactory.js +684 -0
  464. package/out/tokenManagement/tokenManagementTransactionsFactory.js.map +1 -0
  465. package/out/tokenManagement/tokenManagementTransactionsOutcomeParser.d.ts +109 -0
  466. package/out/tokenManagement/tokenManagementTransactionsOutcomeParser.js +356 -0
  467. package/out/tokenManagement/tokenManagementTransactionsOutcomeParser.js.map +1 -0
  468. package/out/tokenOperations/codec.d.ts +7 -0
  469. package/out/tokenOperations/codec.js +55 -0
  470. package/out/tokenOperations/codec.js.map +1 -0
  471. package/out/transactionsOutcomeParsers/index.d.ts +4 -0
  472. package/out/transactionsOutcomeParsers/index.js +17 -0
  473. package/out/transactionsOutcomeParsers/index.js.map +1 -0
  474. package/out/transactionsOutcomeParsers/resources.d.ts +23 -0
  475. package/out/transactionsOutcomeParsers/resources.js +48 -0
  476. package/out/transactionsOutcomeParsers/resources.js.map +1 -0
  477. package/out/transactionsOutcomeParsers/transactionEventsParser.d.ts +16 -0
  478. package/out/transactionsOutcomeParsers/transactionEventsParser.js +48 -0
  479. package/out/transactionsOutcomeParsers/transactionEventsParser.js.map +1 -0
  480. package/out/transfers/index.d.ts +3 -0
  481. package/out/transfers/index.js +16 -0
  482. package/out/transfers/index.js.map +1 -0
  483. package/out/transfers/resources.d.ts +17 -0
  484. package/out/transfers/resources.js +3 -0
  485. package/out/transfers/resources.js.map +1 -0
  486. package/out/transfers/transferTransactionsFactory.d.ts +32 -0
  487. package/out/transfers/transferTransactionsFactory.js +131 -0
  488. package/out/transfers/transferTransactionsFactory.js.map +1 -0
  489. package/out/transfers/transfersControllers.d.ts +11 -0
  490. package/out/transfers/transfersControllers.js +43 -0
  491. package/out/transfers/transfersControllers.js.map +1 -0
  492. package/out/wallet/assertions.d.ts +3 -0
  493. package/out/wallet/assertions.js +12 -0
  494. package/out/wallet/assertions.js.map +1 -0
  495. package/out/wallet/crypto/constants.d.ts +6 -0
  496. package/out/wallet/crypto/constants.js +11 -0
  497. package/out/wallet/crypto/constants.js.map +1 -0
  498. package/out/wallet/crypto/decryptor.d.ts +5 -0
  499. package/out/wallet/crypto/decryptor.js +29 -0
  500. package/out/wallet/crypto/decryptor.js.map +1 -0
  501. package/out/wallet/crypto/derivationParams.d.ts +23 -0
  502. package/out/wallet/crypto/derivationParams.js +38 -0
  503. package/out/wallet/crypto/derivationParams.js.map +1 -0
  504. package/out/wallet/crypto/encryptedData.d.ts +15 -0
  505. package/out/wallet/crypto/encryptedData.js +52 -0
  506. package/out/wallet/crypto/encryptedData.js.map +1 -0
  507. package/out/wallet/crypto/encryptor.d.ts +14 -0
  508. package/out/wallet/crypto/encryptor.js +39 -0
  509. package/out/wallet/crypto/encryptor.js.map +1 -0
  510. package/out/wallet/crypto/index.d.ts +7 -0
  511. package/out/wallet/crypto/index.js +20 -0
  512. package/out/wallet/crypto/index.js.map +1 -0
  513. package/out/wallet/crypto/pubkeyDecryptor.d.ts +6 -0
  514. package/out/wallet/crypto/pubkeyDecryptor.js +38 -0
  515. package/out/wallet/crypto/pubkeyDecryptor.js.map +1 -0
  516. package/out/wallet/crypto/pubkeyEncryptor.d.ts +6 -0
  517. package/out/wallet/crypto/pubkeyEncryptor.js +54 -0
  518. package/out/wallet/crypto/pubkeyEncryptor.js.map +1 -0
  519. package/out/wallet/crypto/randomness.d.ts +7 -0
  520. package/out/wallet/crypto/randomness.js +15 -0
  521. package/out/wallet/crypto/randomness.js.map +1 -0
  522. package/out/wallet/crypto/x25519EncryptedData.d.ts +15 -0
  523. package/out/wallet/crypto/x25519EncryptedData.js +37 -0
  524. package/out/wallet/crypto/x25519EncryptedData.js.map +1 -0
  525. package/out/wallet/index.d.ts +11 -0
  526. package/out/wallet/index.js +24 -0
  527. package/out/wallet/index.js.map +1 -0
  528. package/out/wallet/keypair.d.ts +12 -0
  529. package/out/wallet/keypair.js +32 -0
  530. package/out/wallet/keypair.js.map +1 -0
  531. package/out/wallet/mnemonic.d.ts +13 -0
  532. package/out/wallet/mnemonic.js +74 -0
  533. package/out/wallet/mnemonic.js.map +1 -0
  534. package/out/wallet/pem.d.ts +8 -0
  535. package/out/wallet/pem.js +60 -0
  536. package/out/wallet/pem.js.map +1 -0
  537. package/out/wallet/pemEntry.d.ts +10 -0
  538. package/out/wallet/pemEntry.js +73 -0
  539. package/out/wallet/pemEntry.js.map +1 -0
  540. package/out/wallet/userKeys.d.ts +23 -0
  541. package/out/wallet/userKeys.js +99 -0
  542. package/out/wallet/userKeys.js.map +1 -0
  543. package/out/wallet/userPem.d.ts +15 -0
  544. package/out/wallet/userPem.js +51 -0
  545. package/out/wallet/userPem.js.map +1 -0
  546. package/out/wallet/userSigner.d.ts +16 -0
  547. package/out/wallet/userSigner.js +41 -0
  548. package/out/wallet/userSigner.js.map +1 -0
  549. package/out/wallet/userVerifier.d.ts +18 -0
  550. package/out/wallet/userVerifier.js +27 -0
  551. package/out/wallet/userVerifier.js.map +1 -0
  552. package/out/wallet/userWallet.d.ts +54 -0
  553. package/out/wallet/userWallet.js +206 -0
  554. package/out/wallet/userWallet.js.map +1 -0
  555. package/out/wallet/validatorKeys.d.ts +26 -0
  556. package/out/wallet/validatorKeys.js +77 -0
  557. package/out/wallet/validatorKeys.js.map +1 -0
  558. package/out/wallet/validatorSigner.d.ts +10 -0
  559. package/out/wallet/validatorSigner.js +25 -0
  560. package/out/wallet/validatorSigner.js.map +1 -0
  561. package/package.json +84 -0
@@ -0,0 +1,215 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DelegationController = void 0;
4
+ const core_1 = require("../core");
5
+ const delegationTransactionsFactory_1 = require("./delegationTransactionsFactory");
6
+ const delegationTransactionsOutcomeParser_1 = require("./delegationTransactionsOutcomeParser");
7
+ class DelegationController extends core_1.BaseController {
8
+ constructor(options) {
9
+ super();
10
+ this.transactionAwaiter = new core_1.TransactionWatcher(options.networkProvider);
11
+ this.factory = new delegationTransactionsFactory_1.DelegationTransactionsFactory({
12
+ config: new core_1.TransactionsFactoryConfig({ chainID: options.chainID }),
13
+ });
14
+ this.parser = new delegationTransactionsOutcomeParser_1.DelegationTransactionsOutcomeParser();
15
+ }
16
+ async createTransactionForNewDelegationContract(sender, nonce, options) {
17
+ const transaction = this.factory.createTransactionForNewDelegationContract(sender.address, options);
18
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
19
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
20
+ transaction.nonce = nonce;
21
+ this.setTransactionGasOptions(transaction, options);
22
+ this.setVersionAndOptionsForGuardian(transaction);
23
+ transaction.signature = await sender.signTransaction(transaction);
24
+ return transaction;
25
+ }
26
+ async awaitCompletedCreateNewDelegationContract(txHash) {
27
+ const transaction = await this.transactionAwaiter.awaitCompleted(txHash);
28
+ return this.parseCreateNewDelegationContract(transaction);
29
+ }
30
+ parseCreateNewDelegationContract(transactionOnNetwork) {
31
+ return this.parser.parseCreateNewDelegationContract(transactionOnNetwork);
32
+ }
33
+ async createTransactionForAddingNodes(sender, nonce, options) {
34
+ const transaction = this.factory.createTransactionForAddingNodes(sender.address, options);
35
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
36
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
37
+ transaction.nonce = nonce;
38
+ this.setTransactionGasOptions(transaction, options);
39
+ this.setVersionAndOptionsForGuardian(transaction);
40
+ transaction.signature = await sender.signTransaction(transaction);
41
+ return transaction;
42
+ }
43
+ async createTransactionForRemovingNodes(sender, nonce, options) {
44
+ const transaction = this.factory.createTransactionForRemovingNodes(sender.address, options);
45
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
46
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
47
+ transaction.nonce = nonce;
48
+ this.setTransactionGasOptions(transaction, options);
49
+ this.setVersionAndOptionsForGuardian(transaction);
50
+ transaction.signature = await sender.signTransaction(transaction);
51
+ return transaction;
52
+ }
53
+ async createTransactionForStakingNodes(sender, nonce, options) {
54
+ const transaction = this.factory.createTransactionForStakingNodes(sender.address, options);
55
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
56
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
57
+ transaction.nonce = nonce;
58
+ this.setTransactionGasOptions(transaction, options);
59
+ this.setVersionAndOptionsForGuardian(transaction);
60
+ transaction.signature = await sender.signTransaction(transaction);
61
+ return transaction;
62
+ }
63
+ async createTransactionForUnbondingNodes(sender, nonce, options) {
64
+ const transaction = this.factory.createTransactionForUnbondingNodes(sender.address, options);
65
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
66
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
67
+ transaction.nonce = nonce;
68
+ this.setTransactionGasOptions(transaction, options);
69
+ this.setVersionAndOptionsForGuardian(transaction);
70
+ transaction.signature = await sender.signTransaction(transaction);
71
+ return transaction;
72
+ }
73
+ async createTransactionForUnstakingNodes(sender, nonce, options) {
74
+ const transaction = this.factory.createTransactionForUnstakingNodes(sender.address, options);
75
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
76
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
77
+ transaction.nonce = nonce;
78
+ this.setTransactionGasOptions(transaction, options);
79
+ this.setVersionAndOptionsForGuardian(transaction);
80
+ transaction.signature = await sender.signTransaction(transaction);
81
+ return transaction;
82
+ }
83
+ async createTransactionForUnjailingNodes(sender, nonce, options) {
84
+ const transaction = this.factory.createTransactionForUnjailingNodes(sender.address, options);
85
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
86
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
87
+ transaction.nonce = nonce;
88
+ this.setTransactionGasOptions(transaction, options);
89
+ this.setVersionAndOptionsForGuardian(transaction);
90
+ transaction.signature = await sender.signTransaction(transaction);
91
+ return transaction;
92
+ }
93
+ async createTransactionForChangingServiceFee(sender, nonce, options) {
94
+ const transaction = this.factory.createTransactionForChangingServiceFee(sender.address, options);
95
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
96
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
97
+ transaction.nonce = nonce;
98
+ this.setTransactionGasOptions(transaction, options);
99
+ this.setVersionAndOptionsForGuardian(transaction);
100
+ transaction.signature = await sender.signTransaction(transaction);
101
+ return transaction;
102
+ }
103
+ async createTransactionForModifyingDelegationCap(sender, nonce, options) {
104
+ const transaction = this.factory.createTransactionForModifyingDelegationCap(sender.address, options);
105
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
106
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
107
+ transaction.nonce = nonce;
108
+ this.setTransactionGasOptions(transaction, options);
109
+ this.setVersionAndOptionsForGuardian(transaction);
110
+ transaction.signature = await sender.signTransaction(transaction);
111
+ return transaction;
112
+ }
113
+ async createTransactionForSettingAutomaticActivation(sender, nonce, options) {
114
+ const transaction = this.factory.createTransactionForSettingAutomaticActivation(sender.address, options);
115
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
116
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
117
+ transaction.nonce = nonce;
118
+ this.setTransactionGasOptions(transaction, options);
119
+ this.setVersionAndOptionsForGuardian(transaction);
120
+ transaction.signature = await sender.signTransaction(transaction);
121
+ return transaction;
122
+ }
123
+ async createTransactionForUnsettingAutomaticActivation(sender, nonce, options) {
124
+ const transaction = this.factory.createTransactionForUnsettingAutomaticActivation(sender.address, options);
125
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
126
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
127
+ transaction.nonce = nonce;
128
+ this.setTransactionGasOptions(transaction, options);
129
+ this.setVersionAndOptionsForGuardian(transaction);
130
+ transaction.signature = await sender.signTransaction(transaction);
131
+ return transaction;
132
+ }
133
+ async createTransactionForSettingCapCheckOnRedelegateRewards(sender, nonce, options) {
134
+ const transaction = this.factory.createTransactionForSettingCapCheckOnRedelegateRewards(sender.address, options);
135
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
136
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
137
+ transaction.nonce = nonce;
138
+ this.setTransactionGasOptions(transaction, options);
139
+ this.setVersionAndOptionsForGuardian(transaction);
140
+ transaction.signature = await sender.signTransaction(transaction);
141
+ return transaction;
142
+ }
143
+ async createTransactionForUnsettingCapCheckOnRedelegateRewards(sender, nonce, options) {
144
+ const transaction = this.factory.createTransactionForUnsettingCapCheckOnRedelegateRewards(sender.address, options);
145
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
146
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
147
+ transaction.nonce = nonce;
148
+ this.setTransactionGasOptions(transaction, options);
149
+ this.setVersionAndOptionsForGuardian(transaction);
150
+ transaction.signature = await sender.signTransaction(transaction);
151
+ return transaction;
152
+ }
153
+ async createTransactionForSettingMetadata(sender, nonce, options) {
154
+ const transaction = this.factory.createTransactionForSettingMetadata(sender.address, options);
155
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
156
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
157
+ transaction.nonce = nonce;
158
+ this.setTransactionGasOptions(transaction, options);
159
+ this.setVersionAndOptionsForGuardian(transaction);
160
+ transaction.signature = await sender.signTransaction(transaction);
161
+ return transaction;
162
+ }
163
+ async createTransactionForDelegating(sender, nonce, options) {
164
+ const transaction = this.factory.createTransactionForDelegating(sender.address, options);
165
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
166
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
167
+ transaction.nonce = nonce;
168
+ this.setTransactionGasOptions(transaction, options);
169
+ this.setVersionAndOptionsForGuardian(transaction);
170
+ transaction.signature = await sender.signTransaction(transaction);
171
+ return transaction;
172
+ }
173
+ async createTransactionForClaimingRewards(sender, nonce, options) {
174
+ const transaction = this.factory.createTransactionForClaimingRewards(sender.address, options);
175
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
176
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
177
+ transaction.nonce = nonce;
178
+ this.setTransactionGasOptions(transaction, options);
179
+ this.setVersionAndOptionsForGuardian(transaction);
180
+ transaction.signature = await sender.signTransaction(transaction);
181
+ return transaction;
182
+ }
183
+ async createTransactionForRedelegatingRewards(sender, nonce, options) {
184
+ const transaction = this.factory.createTransactionForRedelegatingRewards(sender.address, options);
185
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
186
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
187
+ transaction.nonce = nonce;
188
+ this.setTransactionGasOptions(transaction, options);
189
+ this.setVersionAndOptionsForGuardian(transaction);
190
+ transaction.signature = await sender.signTransaction(transaction);
191
+ return transaction;
192
+ }
193
+ async createTransactionForUndelegating(sender, nonce, options) {
194
+ const transaction = this.factory.createTransactionForUndelegating(sender.address, options);
195
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
196
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
197
+ transaction.nonce = nonce;
198
+ this.setTransactionGasOptions(transaction, options);
199
+ this.setVersionAndOptionsForGuardian(transaction);
200
+ transaction.signature = await sender.signTransaction(transaction);
201
+ return transaction;
202
+ }
203
+ async createTransactionForWithdrawing(sender, nonce, options) {
204
+ const transaction = this.factory.createTransactionForWithdrawing(sender.address, options);
205
+ transaction.nonce = nonce;
206
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
207
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
208
+ this.setTransactionGasOptions(transaction, options);
209
+ this.setVersionAndOptionsForGuardian(transaction);
210
+ transaction.signature = await sender.signTransaction(transaction);
211
+ return transaction;
212
+ }
213
+ }
214
+ exports.DelegationController = DelegationController;
215
+ //# sourceMappingURL=delegationController.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delegationController.js","sourceRoot":"","sources":["../../src/delegation/delegationController.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,48 @@
1
+ import { Address } from "../core/address";
2
+ import { Transaction } from "../core/transaction";
3
+ import * as resources from "./resources";
4
+ interface IConfig {
5
+ chainID: string;
6
+ addressHrp: string;
7
+ minGasLimit: bigint;
8
+ gasLimitPerByte: bigint;
9
+ gasLimitStake: bigint;
10
+ gasLimitUnstake: bigint;
11
+ gasLimitUnbond: bigint;
12
+ gasLimitCreateDelegationContract: bigint;
13
+ gasLimitDelegationOperations: bigint;
14
+ additionalGasLimitPerValidatorNode: bigint;
15
+ additionalGasLimitForDelegationOperations: bigint;
16
+ }
17
+ /**
18
+ * Use this class to create delegation related transactions like creating a new delegation contract or adding nodes.
19
+ */
20
+ export declare class DelegationTransactionsFactory {
21
+ private readonly config;
22
+ private readonly argSerializer;
23
+ private readonly delegationManagerAddress;
24
+ constructor(options: {
25
+ config: IConfig;
26
+ });
27
+ createTransactionForNewDelegationContract(sender: Address, options: resources.NewDelegationContractInput): Transaction;
28
+ createTransactionForAddingNodes(sender: Address, options: resources.AddNodesInput): Transaction;
29
+ createTransactionForRemovingNodes(sender: Address, options: resources.ManageNodesInput): Transaction;
30
+ createTransactionForStakingNodes(sender: Address, options: resources.ManageNodesInput): Transaction;
31
+ createTransactionForUnbondingNodes(sender: Address, options: resources.ManageNodesInput): Transaction;
32
+ createTransactionForUnstakingNodes(sender: Address, options: resources.ManageNodesInput): Transaction;
33
+ createTransactionForUnjailingNodes(sender: Address, options: resources.UnjailingNodesInput): Transaction;
34
+ createTransactionForChangingServiceFee(sender: Address, options: resources.ChangeServiceFee): Transaction;
35
+ createTransactionForModifyingDelegationCap(sender: Address, options: resources.ModifyDelegationCapInput): Transaction;
36
+ createTransactionForSettingAutomaticActivation(sender: Address, options: resources.ManageDelegationContractInput): Transaction;
37
+ createTransactionForUnsettingAutomaticActivation(sender: Address, options: resources.ManageDelegationContractInput): Transaction;
38
+ createTransactionForSettingCapCheckOnRedelegateRewards(sender: Address, options: resources.ManageDelegationContractInput): Transaction;
39
+ createTransactionForUnsettingCapCheckOnRedelegateRewards(sender: Address, options: resources.ManageDelegationContractInput): Transaction;
40
+ createTransactionForSettingMetadata(sender: Address, options: resources.SetContractMetadataInput): Transaction;
41
+ createTransactionForDelegating(sender: Address, options: resources.DelegateActionsInput): Transaction;
42
+ createTransactionForClaimingRewards(sender: Address, options: resources.ManageDelegationContractInput): Transaction;
43
+ createTransactionForRedelegatingRewards(sender: Address, options: resources.ManageDelegationContractInput): Transaction;
44
+ createTransactionForUndelegating(sender: Address, options: resources.DelegateActionsInput): Transaction;
45
+ createTransactionForWithdrawing(sender: Address, options: resources.ManageDelegationContractInput): Transaction;
46
+ private computeExecutionGasLimitForNodesManagement;
47
+ }
48
+ export {};
@@ -0,0 +1,311 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DelegationTransactionsFactory = void 0;
4
+ const abi_1 = require("../abi");
5
+ const address_1 = require("../core/address");
6
+ const constants_1 = require("../core/constants");
7
+ const errors_1 = require("../core/errors");
8
+ const transactionBuilder_1 = require("../core/transactionBuilder");
9
+ /**
10
+ * Use this class to create delegation related transactions like creating a new delegation contract or adding nodes.
11
+ */
12
+ class DelegationTransactionsFactory {
13
+ constructor(options) {
14
+ this.config = options.config;
15
+ this.argSerializer = new abi_1.ArgSerializer();
16
+ this.delegationManagerAddress = address_1.Address.newFromHex(constants_1.DELEGATION_MANAGER_SC_ADDRESS_HEX, this.config.addressHrp);
17
+ }
18
+ createTransactionForNewDelegationContract(sender, options) {
19
+ const dataParts = [
20
+ "createNewDelegationContract",
21
+ ...this.argSerializer.valuesToStrings([
22
+ new abi_1.BigUIntValue(options.totalDelegationCap),
23
+ new abi_1.BigUIntValue(options.serviceFee),
24
+ ]),
25
+ ];
26
+ const executionGasLimit = this.config.gasLimitCreateDelegationContract + this.config.additionalGasLimitForDelegationOperations;
27
+ return new transactionBuilder_1.TransactionBuilder({
28
+ config: this.config,
29
+ sender: sender,
30
+ receiver: this.delegationManagerAddress,
31
+ dataParts: dataParts,
32
+ gasLimit: executionGasLimit,
33
+ addDataMovementGas: true,
34
+ amount: options.amount,
35
+ }).build();
36
+ }
37
+ createTransactionForAddingNodes(sender, options) {
38
+ if (options.publicKeys.length !== options.signedMessages.length) {
39
+ throw new errors_1.Err("The number of public keys should match the number of signed messages");
40
+ }
41
+ const signedMessagesAsTypedValues = options.signedMessages.map((message) => new abi_1.BytesValue(Buffer.from(message)));
42
+ const messagesAsStrings = this.argSerializer.valuesToStrings(signedMessagesAsTypedValues);
43
+ const numNodes = options.publicKeys.length;
44
+ const dataParts = ["addNodes"];
45
+ for (let i = 0; i < numNodes; i++) {
46
+ dataParts.push(...[options.publicKeys[i].hex(), messagesAsStrings[i]]);
47
+ }
48
+ return new transactionBuilder_1.TransactionBuilder({
49
+ config: this.config,
50
+ sender: sender,
51
+ receiver: options.delegationContract,
52
+ dataParts: dataParts,
53
+ gasLimit: this.computeExecutionGasLimitForNodesManagement(numNodes),
54
+ addDataMovementGas: true,
55
+ }).build();
56
+ }
57
+ createTransactionForRemovingNodes(sender, options) {
58
+ const dataParts = ["removeNodes"];
59
+ for (const key of options.publicKeys) {
60
+ dataParts.push(key.hex());
61
+ }
62
+ const numNodes = options.publicKeys.length;
63
+ return new transactionBuilder_1.TransactionBuilder({
64
+ config: this.config,
65
+ sender: sender,
66
+ receiver: options.delegationContract,
67
+ dataParts: dataParts,
68
+ gasLimit: this.computeExecutionGasLimitForNodesManagement(numNodes),
69
+ addDataMovementGas: true,
70
+ }).build();
71
+ }
72
+ createTransactionForStakingNodes(sender, options) {
73
+ let dataParts = ["stakeNodes"];
74
+ for (const key of options.publicKeys) {
75
+ dataParts = dataParts.concat(key.hex());
76
+ }
77
+ const numNodes = options.publicKeys.length;
78
+ const additionalGasForAllNodes = BigInt(numNodes) * this.config.additionalGasLimitPerValidatorNode;
79
+ const executionGasLimit = additionalGasForAllNodes + this.config.gasLimitStake + this.config.gasLimitDelegationOperations;
80
+ return new transactionBuilder_1.TransactionBuilder({
81
+ config: this.config,
82
+ sender: sender,
83
+ receiver: options.delegationContract,
84
+ dataParts: dataParts,
85
+ gasLimit: executionGasLimit,
86
+ addDataMovementGas: true,
87
+ }).build();
88
+ }
89
+ createTransactionForUnbondingNodes(sender, options) {
90
+ let dataParts = ["unBondNodes"];
91
+ for (const key of options.publicKeys) {
92
+ dataParts = dataParts.concat(key.hex());
93
+ }
94
+ const numNodes = options.publicKeys.length;
95
+ const executionGasLimit = BigInt(numNodes) * this.config.additionalGasLimitPerValidatorNode +
96
+ this.config.gasLimitUnbond +
97
+ this.config.gasLimitDelegationOperations;
98
+ return new transactionBuilder_1.TransactionBuilder({
99
+ config: this.config,
100
+ sender: sender,
101
+ receiver: options.delegationContract,
102
+ dataParts: dataParts,
103
+ gasLimit: executionGasLimit,
104
+ addDataMovementGas: true,
105
+ }).build();
106
+ }
107
+ createTransactionForUnstakingNodes(sender, options) {
108
+ let dataParts = ["unStakeNodes"];
109
+ for (const key of options.publicKeys) {
110
+ dataParts = dataParts.concat(key.hex());
111
+ }
112
+ const numNodes = options.publicKeys.length;
113
+ const executionGasLimit = BigInt(numNodes) * this.config.additionalGasLimitPerValidatorNode +
114
+ this.config.gasLimitUnstake +
115
+ this.config.gasLimitDelegationOperations;
116
+ return new transactionBuilder_1.TransactionBuilder({
117
+ config: this.config,
118
+ sender: sender,
119
+ receiver: options.delegationContract,
120
+ dataParts: dataParts,
121
+ gasLimit: executionGasLimit,
122
+ addDataMovementGas: true,
123
+ }).build();
124
+ }
125
+ createTransactionForUnjailingNodes(sender, options) {
126
+ const dataParts = ["unJailNodes"];
127
+ for (const key of options.publicKeys) {
128
+ dataParts.push(key.hex());
129
+ }
130
+ const numNodes = options.publicKeys.length;
131
+ return new transactionBuilder_1.TransactionBuilder({
132
+ config: this.config,
133
+ sender: sender,
134
+ receiver: options.delegationContract,
135
+ dataParts: dataParts,
136
+ gasLimit: this.computeExecutionGasLimitForNodesManagement(numNodes),
137
+ addDataMovementGas: true,
138
+ amount: options.amount,
139
+ }).build();
140
+ }
141
+ createTransactionForChangingServiceFee(sender, options) {
142
+ const dataParts = [
143
+ "changeServiceFee",
144
+ this.argSerializer.valuesToStrings([new abi_1.BigUIntValue(options.serviceFee)])[0],
145
+ ];
146
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
147
+ return new transactionBuilder_1.TransactionBuilder({
148
+ config: this.config,
149
+ sender: sender,
150
+ receiver: options.delegationContract,
151
+ dataParts: dataParts,
152
+ gasLimit: gasLimit,
153
+ addDataMovementGas: true,
154
+ }).build();
155
+ }
156
+ createTransactionForModifyingDelegationCap(sender, options) {
157
+ const dataParts = [
158
+ "modifyTotalDelegationCap",
159
+ this.argSerializer.valuesToStrings([new abi_1.BigUIntValue(options.delegationCap)])[0],
160
+ ];
161
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
162
+ return new transactionBuilder_1.TransactionBuilder({
163
+ config: this.config,
164
+ sender: sender,
165
+ receiver: options.delegationContract,
166
+ dataParts: dataParts,
167
+ gasLimit: gasLimit,
168
+ addDataMovementGas: true,
169
+ }).build();
170
+ }
171
+ createTransactionForSettingAutomaticActivation(sender, options) {
172
+ const dataParts = ["setAutomaticActivation", this.argSerializer.valuesToStrings([new abi_1.StringValue("true")])[0]];
173
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
174
+ return new transactionBuilder_1.TransactionBuilder({
175
+ config: this.config,
176
+ sender: sender,
177
+ receiver: options.delegationContract,
178
+ dataParts: dataParts,
179
+ gasLimit: gasLimit,
180
+ addDataMovementGas: true,
181
+ }).build();
182
+ }
183
+ createTransactionForUnsettingAutomaticActivation(sender, options) {
184
+ const dataParts = ["setAutomaticActivation", this.argSerializer.valuesToStrings([new abi_1.StringValue("false")])[0]];
185
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
186
+ return new transactionBuilder_1.TransactionBuilder({
187
+ config: this.config,
188
+ sender: sender,
189
+ receiver: options.delegationContract,
190
+ dataParts: dataParts,
191
+ gasLimit: gasLimit,
192
+ addDataMovementGas: true,
193
+ }).build();
194
+ }
195
+ createTransactionForSettingCapCheckOnRedelegateRewards(sender, options) {
196
+ const dataParts = [
197
+ "setCheckCapOnReDelegateRewards",
198
+ this.argSerializer.valuesToStrings([new abi_1.StringValue("true")])[0],
199
+ ];
200
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
201
+ return new transactionBuilder_1.TransactionBuilder({
202
+ config: this.config,
203
+ sender: sender,
204
+ receiver: options.delegationContract,
205
+ dataParts: dataParts,
206
+ gasLimit: gasLimit,
207
+ addDataMovementGas: true,
208
+ }).build();
209
+ }
210
+ createTransactionForUnsettingCapCheckOnRedelegateRewards(sender, options) {
211
+ const dataParts = [
212
+ "setCheckCapOnReDelegateRewards",
213
+ this.argSerializer.valuesToStrings([new abi_1.StringValue("false")])[0],
214
+ ];
215
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
216
+ return new transactionBuilder_1.TransactionBuilder({
217
+ config: this.config,
218
+ sender: sender,
219
+ receiver: options.delegationContract,
220
+ dataParts: dataParts,
221
+ gasLimit: gasLimit,
222
+ addDataMovementGas: true,
223
+ }).build();
224
+ }
225
+ createTransactionForSettingMetadata(sender, options) {
226
+ const dataParts = [
227
+ "setMetaData",
228
+ ...this.argSerializer.valuesToStrings([
229
+ new abi_1.StringValue(options.name),
230
+ new abi_1.StringValue(options.website),
231
+ new abi_1.StringValue(options.identifier),
232
+ ]),
233
+ ];
234
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
235
+ return new transactionBuilder_1.TransactionBuilder({
236
+ config: this.config,
237
+ sender: sender,
238
+ receiver: options.delegationContract,
239
+ dataParts: dataParts,
240
+ gasLimit: gasLimit,
241
+ addDataMovementGas: true,
242
+ }).build();
243
+ }
244
+ createTransactionForDelegating(sender, options) {
245
+ const dataParts = ["delegate"];
246
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
247
+ return new transactionBuilder_1.TransactionBuilder({
248
+ config: this.config,
249
+ sender: sender,
250
+ receiver: options.delegationContract,
251
+ dataParts: dataParts,
252
+ gasLimit: gasLimit,
253
+ amount: options.amount,
254
+ addDataMovementGas: false,
255
+ }).build();
256
+ }
257
+ createTransactionForClaimingRewards(sender, options) {
258
+ const dataParts = ["claimRewards"];
259
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
260
+ return new transactionBuilder_1.TransactionBuilder({
261
+ config: this.config,
262
+ sender: sender,
263
+ receiver: options.delegationContract,
264
+ dataParts: dataParts,
265
+ gasLimit: gasLimit,
266
+ addDataMovementGas: false,
267
+ }).build();
268
+ }
269
+ createTransactionForRedelegatingRewards(sender, options) {
270
+ const dataParts = ["reDelegateRewards"];
271
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
272
+ return new transactionBuilder_1.TransactionBuilder({
273
+ config: this.config,
274
+ sender: sender,
275
+ receiver: options.delegationContract,
276
+ dataParts: dataParts,
277
+ gasLimit: gasLimit,
278
+ addDataMovementGas: false,
279
+ }).build();
280
+ }
281
+ createTransactionForUndelegating(sender, options) {
282
+ const dataParts = ["unDelegate", this.argSerializer.valuesToStrings([new abi_1.BigUIntValue(options.amount)])[0]];
283
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
284
+ return new transactionBuilder_1.TransactionBuilder({
285
+ config: this.config,
286
+ sender: sender,
287
+ receiver: options.delegationContract,
288
+ dataParts: dataParts,
289
+ gasLimit: gasLimit,
290
+ addDataMovementGas: false,
291
+ }).build();
292
+ }
293
+ createTransactionForWithdrawing(sender, options) {
294
+ const dataParts = ["withdraw"];
295
+ const gasLimit = this.config.gasLimitDelegationOperations + this.config.additionalGasLimitForDelegationOperations;
296
+ return new transactionBuilder_1.TransactionBuilder({
297
+ config: this.config,
298
+ sender: sender,
299
+ receiver: options.delegationContract,
300
+ dataParts: dataParts,
301
+ gasLimit: gasLimit,
302
+ addDataMovementGas: false,
303
+ }).build();
304
+ }
305
+ computeExecutionGasLimitForNodesManagement(numNodes) {
306
+ const additionalGasForAllNodes = this.config.additionalGasLimitPerValidatorNode * BigInt(numNodes);
307
+ return this.config.gasLimitDelegationOperations + additionalGasForAllNodes;
308
+ }
309
+ }
310
+ exports.DelegationTransactionsFactory = DelegationTransactionsFactory;
311
+ //# sourceMappingURL=delegationTransactionsFactory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delegationTransactionsFactory.js","sourceRoot":"","sources":["../../src/delegation/delegationTransactionsFactory.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ import { TransactionOnNetwork } from "../core/transactionOnNetwork";
2
+ export declare class DelegationTransactionsOutcomeParser {
3
+ constructor();
4
+ parseCreateNewDelegationContract(transaction: TransactionOnNetwork): {
5
+ contractAddress: string;
6
+ }[];
7
+ private ensureNoError;
8
+ private extractContractAddress;
9
+ private decodeTopicAsString;
10
+ }