@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,540 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
10
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
11
+ }) : function(o, v) {
12
+ o["default"] = v;
13
+ });
14
+ var __importStar = (this && this.__importStar) || function (mod) {
15
+ if (mod && mod.__esModule) return mod;
16
+ var result = {};
17
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
18
+ __setModuleDefault(result, mod);
19
+ return result;
20
+ };
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.MultisigController = void 0;
23
+ const core_1 = require("../core");
24
+ const smartContracts_1 = require("../smartContracts");
25
+ const multisigTransactionsFactory_1 = require("./multisigTransactionsFactory");
26
+ const multisigTransactionsOutcomeParser_1 = require("./multisigTransactionsOutcomeParser");
27
+ const resources = __importStar(require("./resources"));
28
+ class MultisigController extends core_1.BaseController {
29
+ constructor(options) {
30
+ super();
31
+ this.mapResponseToAction = (responseData) => {
32
+ const { name, fields } = responseData;
33
+ switch (name) {
34
+ case resources.MultisigActionEnum.Nothing:
35
+ return new resources.MultisigAction();
36
+ case resources.MultisigActionEnum.AddBoardMember:
37
+ return new resources.AddBoardMember(fields[0]);
38
+ case resources.MultisigActionEnum.AddProposer:
39
+ return new resources.AddProposer(fields[0]);
40
+ case resources.MultisigActionEnum.RemoveUser:
41
+ return new resources.RemoveUser(fields[0]);
42
+ case resources.MultisigActionEnum.ChangeQuorum:
43
+ return new resources.ChangeQuorum(fields[0]);
44
+ case resources.MultisigActionEnum.SendTransferExecuteRewa:
45
+ return new resources.SendTransferExecuteRewa(fields[0]);
46
+ case resources.MultisigActionEnum.SendTransferExecuteDcdt:
47
+ return new resources.SendTransferExecuteDcdt(fields[0]);
48
+ case resources.MultisigActionEnum.SendAsyncCall:
49
+ return new resources.SendAsyncCall(fields[0]);
50
+ case resources.MultisigActionEnum.SCDeployFromSource:
51
+ return new resources.SCDeployFromSource(fields);
52
+ case resources.MultisigActionEnum.SCUpgradeFromSource:
53
+ return new resources.SCUpgradeFromSource(fields);
54
+ default:
55
+ throw new Error(`Unknown action type: ${name}`);
56
+ }
57
+ };
58
+ this.transactionAwaiter = new core_1.TransactionWatcher(options.networkProvider);
59
+ this.multisigFactory = new multisigTransactionsFactory_1.MultisigTransactionsFactory({
60
+ config: new core_1.TransactionsFactoryConfig({ chainID: options.chainID }),
61
+ abi: options.abi,
62
+ });
63
+ this.multisigParser = new multisigTransactionsOutcomeParser_1.MultisigTransactionsOutcomeParser({ abi: options.abi });
64
+ this.smartContractController = new smartContracts_1.SmartContractController({
65
+ chainID: options.chainID,
66
+ networkProvider: options.networkProvider,
67
+ abi: options.abi,
68
+ });
69
+ }
70
+ /**
71
+ * Creates a transaction for deploying a new multisig contract
72
+ */
73
+ async createTransactionForDeploy(sender, nonce, options) {
74
+ const transaction = this.multisigFactory.createTransactionForDeploy(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
+ transaction.signature = await sender.signTransaction(transaction);
80
+ return transaction;
81
+ }
82
+ parseDeploy(transactionOnNetwork) {
83
+ return this.multisigParser.parseDeploy(transactionOnNetwork);
84
+ }
85
+ async awaitCompletedDeploy(txHash) {
86
+ const transaction = await this.transactionAwaiter.awaitCompleted(txHash);
87
+ return this.parseDeploy(transaction);
88
+ }
89
+ /**
90
+ * Gets quorum for specific multisig
91
+ */
92
+ async getQuorum(options) {
93
+ const [value] = await this.smartContractController.query({
94
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
95
+ function: "getQuorum",
96
+ arguments: [],
97
+ });
98
+ return Number(value.toString());
99
+ }
100
+ /**
101
+ * Gets number of board members for specific multisig
102
+ */
103
+ async getNumBoardMembers(options) {
104
+ const [value] = await this.smartContractController.query({
105
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
106
+ function: "getNumBoardMembers",
107
+ arguments: [],
108
+ });
109
+ return Number(value.toString());
110
+ }
111
+ /**
112
+ * Gets number of groups for specific multisig
113
+ */
114
+ async getNumGroups(options) {
115
+ const [value] = await this.smartContractController.query({
116
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
117
+ function: "getNumGroups",
118
+ arguments: [],
119
+ });
120
+ return Number(value.toString());
121
+ }
122
+ /**
123
+ * Gets number of proposers for specific multisig
124
+ */
125
+ async getNumProposers(options) {
126
+ const [value] = await this.smartContractController.query({
127
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
128
+ function: "getNumProposers",
129
+ arguments: [],
130
+ });
131
+ return Number(value.toString());
132
+ }
133
+ /**
134
+ * Gets action group for specific multisig
135
+ */
136
+ async getActionGroup(options) {
137
+ const [value] = await this.smartContractController.query({
138
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
139
+ function: "getActionGroup",
140
+ arguments: [options.groupId],
141
+ });
142
+ return value.map((n) => Number(n.toString()));
143
+ }
144
+ /**
145
+ * Gets last group action id specific multisig
146
+ */
147
+ async getLastGroupActionId(options) {
148
+ const [value] = await this.smartContractController.query({
149
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
150
+ function: "getLastGroupActionId",
151
+ arguments: [],
152
+ });
153
+ return Number(value.toString());
154
+ }
155
+ /**
156
+ * Gets last action index specific multisig
157
+ */
158
+ async getActionLastIndex(options) {
159
+ const [value] = await this.smartContractController.query({
160
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
161
+ function: "getActionLastIndex",
162
+ arguments: [],
163
+ });
164
+ return Number(value.toString());
165
+ }
166
+ /**
167
+ * Returns `true` (`1`) if the user has signed the action.
168
+ * Does not check whether or not the user is still a board member and the signature valid.
169
+ */
170
+ async hasSignedAction(options) {
171
+ const [value] = await this.smartContractController.query({
172
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
173
+ function: "signed",
174
+ arguments: [core_1.Address.newFromBech32(options.userAddress), options.actionId],
175
+ });
176
+ return value;
177
+ }
178
+ /**
179
+ * Returns `true` (`1`) if `getActionValidSignerCount >= getQuorum`.
180
+ */
181
+ async quorumReached(options) {
182
+ const [value] = await this.smartContractController.query({
183
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
184
+ function: "quorumReached",
185
+ arguments: [options.actionId],
186
+ });
187
+ return value;
188
+ }
189
+ /**
190
+ * Lists all users that can sign actions.
191
+ */
192
+ async getAllBoardMembers(options) {
193
+ const [value] = await this.smartContractController.query({
194
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
195
+ function: "getAllBoardMembers",
196
+ arguments: [],
197
+ });
198
+ return value.map((address) => address?.toBech32());
199
+ }
200
+ /**
201
+ * Lists all proposers that are not board members.
202
+ */
203
+ async getAllProposers(options) {
204
+ const [value] = await this.smartContractController.query({
205
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
206
+ function: "getAllProposers",
207
+ arguments: [],
208
+ });
209
+ return value.map((address) => address?.toBech32());
210
+ }
211
+ /**
212
+ * "Indicates user rights.",
213
+ * `0` = no rights,",
214
+ * `1` = can propose, but not sign,
215
+ * `2` = can propose and sign.
216
+ */
217
+ async getUserRole(options) {
218
+ const [value] = await this.smartContractController.query({
219
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
220
+ function: "userRole",
221
+ arguments: [core_1.Address.newFromBech32(options.userAddress)],
222
+ });
223
+ const userRole = value.valueOf().name;
224
+ return resources.UserRoleEnum[userRole];
225
+ }
226
+ /**
227
+ * Serialized action data of an action with index.
228
+ */
229
+ async getActionData(options) {
230
+ const [value] = await this.smartContractController.query({
231
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
232
+ function: "getActionData",
233
+ arguments: [options.actionId],
234
+ });
235
+ const result = this.mapResponseToAction(value.valueOf());
236
+ return result;
237
+ }
238
+ /**
239
+ * Gets all pending actions.
240
+ */
241
+ async getPendingActionFullInfo(options) {
242
+ const [actions] = await this.smartContractController.query({
243
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
244
+ function: "getPendingActionFullInfo",
245
+ arguments: [],
246
+ });
247
+ const result = [];
248
+ for (let action = 0; action < actions.length; action++) {
249
+ const element = actions[action];
250
+ result.push({
251
+ actionId: Number(element.action_id.toString()),
252
+ groupId: Number(element.group_id.toString()),
253
+ actionData: this.mapResponseToAction(element.action_data.valueOf()),
254
+ signers: element.signers.map((address) => new core_1.Address(address)),
255
+ });
256
+ }
257
+ return result;
258
+ }
259
+ /**
260
+ * Gets addresses of all users who signed an action.
261
+ * Does not check if those users are still board members or not, so the result may contain invalid signers.
262
+ */
263
+ async getActionSigners(options) {
264
+ const response = await this.smartContractController.query({
265
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
266
+ function: "getActionSigners",
267
+ arguments: [options.actionId],
268
+ });
269
+ const addresses = response.valueOf();
270
+ return addresses[0];
271
+ }
272
+ /**
273
+ * Gets addresses of all users who signed an action and are still board members.
274
+ * All these signatures are currently valid.
275
+ */
276
+ async getActionSignerCount(options) {
277
+ const [value] = await this.smartContractController.query({
278
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
279
+ function: "getActionSignerCount",
280
+ arguments: [options.actionId],
281
+ });
282
+ return value;
283
+ }
284
+ /**
285
+ * Gets addresses of all users who signed an action and are still board members.
286
+ * All these signatures are currently valid.
287
+ */
288
+ async getActionValidSignerCount(options) {
289
+ const [value] = await this.smartContractController.query({
290
+ contract: core_1.Address.newFromBech32(options.multisigAddress),
291
+ function: "getActionValidSignerCount",
292
+ arguments: [options.actionId],
293
+ });
294
+ return Number(value.toString());
295
+ }
296
+ /**
297
+ * Creates a transaction for proposing to add a board member
298
+ */
299
+ async createTransactionForProposeAddBoardMember(sender, nonce, options) {
300
+ const transaction = this.multisigFactory.createTransactionForProposeAddBoardMember(sender.address, options);
301
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
302
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
303
+ transaction.nonce = nonce;
304
+ this.setTransactionGasOptions(transaction, options);
305
+ transaction.signature = await sender.signTransaction(transaction);
306
+ return transaction;
307
+ }
308
+ /**
309
+ * Creates a transaction for proposing to add a proposer
310
+ */
311
+ async createTransactionForProposeAddProposer(sender, nonce, options) {
312
+ const transaction = this.multisigFactory.createTransactionForProposeAddProposer(sender.address, options);
313
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
314
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
315
+ transaction.nonce = nonce;
316
+ this.setTransactionGasOptions(transaction, options);
317
+ transaction.signature = await sender.signTransaction(transaction);
318
+ return transaction;
319
+ }
320
+ /**
321
+ * Creates a transaction for proposing to remove a user
322
+ */
323
+ async createTransactionForProposeRemoveUser(sender, nonce, options) {
324
+ const transaction = this.multisigFactory.createTransactionForProposeRemoveUser(sender.address, options);
325
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
326
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
327
+ transaction.nonce = nonce;
328
+ this.setTransactionGasOptions(transaction, options);
329
+ transaction.signature = await sender.signTransaction(transaction);
330
+ return transaction;
331
+ }
332
+ /**
333
+ * Creates a transaction for proposing to change quorum
334
+ */
335
+ async createTransactionForProposeChangeQuorum(sender, nonce, options) {
336
+ const transaction = this.multisigFactory.createTransactionForProposeChangeQuorum(sender.address, options);
337
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
338
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
339
+ transaction.nonce = nonce;
340
+ this.setTransactionGasOptions(transaction, options);
341
+ transaction.signature = await sender.signTransaction(transaction);
342
+ return transaction;
343
+ }
344
+ parseProposeAction(transaction) {
345
+ return this.multisigParser.parseProposeAction(transaction);
346
+ }
347
+ async awaitCompletedProposeAction(txHash) {
348
+ const transaction = await this.transactionAwaiter.awaitCompleted(txHash);
349
+ return this.multisigParser.parseProposeAction(transaction);
350
+ }
351
+ /**
352
+ * Creates a transaction for signing an action
353
+ */
354
+ async createTransactionForSignAction(sender, nonce, options) {
355
+ const transaction = this.multisigFactory.createTransactionForSignAction(sender.address, options);
356
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
357
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
358
+ transaction.nonce = nonce;
359
+ this.setTransactionGasOptions(transaction, options);
360
+ transaction.signature = await sender.signTransaction(transaction);
361
+ return transaction;
362
+ }
363
+ /**
364
+ * Creates a transaction for performing an action
365
+ */
366
+ async createTransactionForPerformAction(sender, nonce, options) {
367
+ const transaction = this.multisigFactory.createTransactionForPerformAction(sender.address, options);
368
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
369
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
370
+ transaction.nonce = nonce;
371
+ this.setTransactionGasOptions(transaction, options);
372
+ transaction.signature = await sender.signTransaction(transaction);
373
+ return transaction;
374
+ }
375
+ parsePerformAction(transaction) {
376
+ return this.multisigParser.parsePerformAction(transaction);
377
+ }
378
+ async awaitCompletedPerformAction(txHash) {
379
+ const transaction = await this.transactionAwaiter.awaitCompleted(txHash);
380
+ return this.multisigParser.parsePerformAction(transaction);
381
+ }
382
+ /**
383
+ * Creates a transaction for unsigning an action
384
+ */
385
+ async createTransactionForUnsignAction(sender, nonce, options) {
386
+ const transaction = this.multisigFactory.createTransactionForUnsign(sender.address, options);
387
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
388
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
389
+ transaction.nonce = nonce;
390
+ this.setTransactionGasOptions(transaction, options);
391
+ transaction.signature = await sender.signTransaction(transaction);
392
+ return transaction;
393
+ }
394
+ /**
395
+ * Creates a transaction for discarding an action
396
+ */
397
+ async createTransactionForDiscardAction(sender, nonce, options) {
398
+ const transaction = this.multisigFactory.createTransactionForDiscardAction(sender.address, options);
399
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
400
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
401
+ transaction.nonce = nonce;
402
+ this.setTransactionGasOptions(transaction, options);
403
+ transaction.signature = await sender.signTransaction(transaction);
404
+ return transaction;
405
+ }
406
+ /**
407
+ * Creates a transaction for deposit native token or tokens
408
+ */
409
+ async createTransactionForDeposit(sender, nonce, options) {
410
+ const transaction = this.multisigFactory.createTransactionForDeposit(sender.address, options);
411
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
412
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
413
+ transaction.nonce = nonce;
414
+ this.setTransactionGasOptions(transaction, options);
415
+ transaction.signature = await sender.signTransaction(transaction);
416
+ return transaction;
417
+ }
418
+ /**
419
+ * Creates a transaction for proposing to transfer REWA and execute a smart contract call
420
+ */
421
+ async createTransactionForProposeTransferExecute(sender, nonce, options) {
422
+ const transaction = this.multisigFactory.createTransactionForProposeTransferExecute(sender.address, options);
423
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
424
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
425
+ transaction.nonce = nonce;
426
+ this.setTransactionGasOptions(transaction, options);
427
+ transaction.signature = await sender.signTransaction(transaction);
428
+ return transaction;
429
+ }
430
+ /**
431
+ * Creates a transaction for proposing to transfer DCDT tokens and execute a smart contract call
432
+ */
433
+ async createTransactionForProposeTransferExecuteDcdt(sender, nonce, options) {
434
+ const transaction = this.multisigFactory.createTransactionForProposeTransferExecuteDcdt(sender.address, options);
435
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
436
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
437
+ transaction.nonce = nonce;
438
+ this.setTransactionGasOptions(transaction, options);
439
+ transaction.signature = await sender.signTransaction(transaction);
440
+ return transaction;
441
+ }
442
+ /**
443
+ * Creates a transaction for proposing an async call to another contract
444
+ */
445
+ async createTransactionForProposeAsyncCall(sender, nonce, options) {
446
+ const transaction = this.multisigFactory.createTransactionForProposeAsyncCall(sender.address, options);
447
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
448
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
449
+ transaction.nonce = nonce;
450
+ this.setTransactionGasOptions(transaction, options);
451
+ transaction.signature = await sender.signTransaction(transaction);
452
+ return transaction;
453
+ }
454
+ /**
455
+ * Creates a transaction for proposing to deploy a smart contract from source
456
+ */
457
+ async createTransactionForProposeContractDeployFromSource(sender, nonce, options) {
458
+ const transaction = this.multisigFactory.createTransactionForProposeContractDeployFromSource(sender.address, options);
459
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
460
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
461
+ transaction.nonce = nonce;
462
+ this.setTransactionGasOptions(transaction, options);
463
+ transaction.signature = await sender.signTransaction(transaction);
464
+ return transaction;
465
+ }
466
+ /**
467
+ * Creates a transaction for proposing to upgrade a smart contract from source
468
+ */
469
+ async createTransactionForProposeContractUpgradeFromSource(sender, nonce, options) {
470
+ const transaction = this.multisigFactory.createTransactionForProposeContractUpgradeFromSource(sender.address, options);
471
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
472
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
473
+ transaction.nonce = nonce;
474
+ this.setTransactionGasOptions(transaction, options);
475
+ transaction.signature = await sender.signTransaction(transaction);
476
+ return transaction;
477
+ }
478
+ /**
479
+ * Creates a transaction for signing a batch of actions
480
+ */
481
+ async createTransactionForSignBatch(sender, nonce, options) {
482
+ const transaction = this.multisigFactory.createTransactionForSignBatch(sender.address, options);
483
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
484
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
485
+ transaction.nonce = nonce;
486
+ this.setTransactionGasOptions(transaction, options);
487
+ transaction.signature = await sender.signTransaction(transaction);
488
+ return transaction;
489
+ }
490
+ /**
491
+ * Creates a transaction for signing and performing an action in one step
492
+ */
493
+ async createTransactionForSignAndPerform(sender, nonce, options) {
494
+ const transaction = this.multisigFactory.createTransactionForSignAndPerform(sender.address, options);
495
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
496
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
497
+ transaction.nonce = nonce;
498
+ this.setTransactionGasOptions(transaction, options);
499
+ transaction.signature = await sender.signTransaction(transaction);
500
+ return transaction;
501
+ }
502
+ /**
503
+ * Creates a transaction for unsigning for outdated board members
504
+ */
505
+ async createTransactionForUnsignForOutdatedBoardMembers(sender, nonce, options) {
506
+ const transaction = this.multisigFactory.createTransactionForUnsignForOutdatedBoardMembers(sender.address, options);
507
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
508
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
509
+ transaction.nonce = nonce;
510
+ this.setTransactionGasOptions(transaction, options);
511
+ transaction.signature = await sender.signTransaction(transaction);
512
+ return transaction;
513
+ }
514
+ /**
515
+ * Creates a transaction for performing a batch of actions
516
+ */
517
+ async createTransactionForPerformBatch(sender, nonce, options) {
518
+ const transaction = this.multisigFactory.createTransactionForPerformBatch(sender.address, options);
519
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
520
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
521
+ transaction.nonce = nonce;
522
+ this.setTransactionGasOptions(transaction, options);
523
+ transaction.signature = await sender.signTransaction(transaction);
524
+ return transaction;
525
+ }
526
+ /**
527
+ * Creates a transaction for discarding a batch of actions
528
+ */
529
+ async createTransactionForDiscardBatch(sender, nonce, options) {
530
+ const transaction = this.multisigFactory.createTransactionForDiscardBatch(sender.address, options);
531
+ transaction.guardian = options.guardian ?? core_1.Address.empty();
532
+ transaction.relayer = options.relayer ?? core_1.Address.empty();
533
+ transaction.nonce = nonce;
534
+ this.setTransactionGasOptions(transaction, options);
535
+ transaction.signature = await sender.signTransaction(transaction);
536
+ return transaction;
537
+ }
538
+ }
539
+ exports.MultisigController = MultisigController;
540
+ //# sourceMappingURL=multisigController.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"multisigController.js","sourceRoot":"","sources":["../../src/multisig/multisigController.ts"],"names":[],"mappings":"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"}