@paraswap/dex-lib 3.8.2 → 3.8.3

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 (346) hide show
  1. package/.vscode/launch.json +13 -0
  2. package/.vscode/settings.json +3 -0
  3. package/build/abi/AaveV1_lending_pool.json +27 -0
  4. package/build/abi/Uncompressor.json +250 -0
  5. package/build/abi/integral/factory.json +333 -0
  6. package/build/abi/integral/oracle.json +501 -0
  7. package/build/abi/integral/pool.json +1041 -0
  8. package/build/abi/integral/relayer.json +1536 -0
  9. package/build/abi/oswap/oswap.abi.json +452 -0
  10. package/build/abi/platypus/asset.json +490 -0
  11. package/build/abi/platypus/avax-pool.json +820 -0
  12. package/build/abi/platypus/oracle.json +119 -0
  13. package/build/abi/platypus/pool.json +677 -0
  14. package/build/abi/smardex/all/smardex-router.json +648 -0
  15. package/build/abi/smardex/layer-1/smardex-factory.json +242 -0
  16. package/build/abi/smardex/layer-1/smardex-pool.json +506 -0
  17. package/build/abi/smardex/layer-2/smardex-factory.json +185 -0
  18. package/build/abi/smardex/layer-2/smardex-pool.json +578 -0
  19. package/build/abi/swaap-v1/pool.json +1346 -0
  20. package/build/dex/aave-v1/aave-v1.d.ts +33 -0
  21. package/build/dex/aave-v1/aave-v1.js +158 -0
  22. package/build/dex/aave-v1/aave-v1.js.map +1 -0
  23. package/build/dex/aave-v1/config.d.ts +11 -0
  24. package/build/dex/aave-v1/config.js +20 -0
  25. package/build/dex/aave-v1/config.js.map +1 -0
  26. package/build/dex/aave-v1/tokens-mainnet.json +134 -0
  27. package/build/dex/aave-v1/tokens.d.ts +3 -0
  28. package/build/dex/aave-v1/tokens.js +50 -0
  29. package/build/dex/aave-v1/tokens.js.map +1 -0
  30. package/build/dex/aave-v1/types.d.ts +12 -0
  31. package/build/dex/aave-v1/types.js +3 -0
  32. package/build/dex/aave-v1/types.js.map +1 -0
  33. package/build/dex/aave-v3/aave-v3.js +2 -1
  34. package/build/dex/aave-v3/aave-v3.js.map +1 -1
  35. package/build/dex/aave-v3-stata/aave-v3-stata.js +1 -0
  36. package/build/dex/aave-v3-stata/aave-v3-stata.js.map +1 -1
  37. package/build/dex/angle-staked-stable/angle-staked-stable.js +4 -1
  38. package/build/dex/angle-staked-stable/angle-staked-stable.js.map +1 -1
  39. package/build/dex/bProtocol.d.ts +18 -0
  40. package/build/dex/bProtocol.js +39 -0
  41. package/build/dex/bProtocol.js.map +1 -0
  42. package/build/dex/bancor.d.ts +26 -0
  43. package/build/dex/bancor.js +58 -0
  44. package/build/dex/bancor.js.map +1 -0
  45. package/build/dex/compound/compound.js +2 -1
  46. package/build/dex/compound/compound.js.map +1 -1
  47. package/build/dex/compound.d.ts +18 -0
  48. package/build/dex/compound.js +46 -0
  49. package/build/dex/compound.js.map +1 -0
  50. package/build/dex/curve-v2.d.ts +58 -0
  51. package/build/dex/curve-v2.js +180 -0
  52. package/build/dex/curve-v2.js.map +1 -0
  53. package/build/dex/dodo-v1.d.ts +33 -0
  54. package/build/dex/dodo-v1.js +63 -0
  55. package/build/dex/dodo-v1.js.map +1 -0
  56. package/build/dex/etherfi/etherfi.d.ts +26 -0
  57. package/build/dex/etherfi/etherfi.js +96 -0
  58. package/build/dex/etherfi/etherfi.js.map +1 -0
  59. package/build/dex/etherfi.js +4 -1
  60. package/build/dex/etherfi.js.map +1 -1
  61. package/build/dex/idle-dao/idle-dao.js +1 -0
  62. package/build/dex/idle-dao/idle-dao.js.map +1 -1
  63. package/build/dex/integral/config.d.ts +4 -0
  64. package/build/dex/integral/config.js +20 -0
  65. package/build/dex/integral/config.js.map +1 -0
  66. package/build/dex/integral/context.d.ts +33 -0
  67. package/build/dex/integral/context.js +98 -0
  68. package/build/dex/integral/context.js.map +1 -0
  69. package/build/dex/integral/helpers.d.ts +17 -0
  70. package/build/dex/integral/helpers.js +157 -0
  71. package/build/dex/integral/helpers.js.map +1 -0
  72. package/build/dex/integral/integral-factory.d.ts +21 -0
  73. package/build/dex/integral/integral-factory.js +92 -0
  74. package/build/dex/integral/integral-factory.js.map +1 -0
  75. package/build/dex/integral/integral-pool.d.ts +46 -0
  76. package/build/dex/integral/integral-pool.js +143 -0
  77. package/build/dex/integral/integral-pool.js.map +1 -0
  78. package/build/dex/integral/integral-pricing.d.ts +18 -0
  79. package/build/dex/integral/integral-pricing.js +114 -0
  80. package/build/dex/integral/integral-pricing.js.map +1 -0
  81. package/build/dex/integral/integral-relayer.d.ts +39 -0
  82. package/build/dex/integral/integral-relayer.js +189 -0
  83. package/build/dex/integral/integral-relayer.js.map +1 -0
  84. package/build/dex/integral/integral-token.d.ts +22 -0
  85. package/build/dex/integral/integral-token.js +55 -0
  86. package/build/dex/integral/integral-token.js.map +1 -0
  87. package/build/dex/integral/integral.d.ts +41 -0
  88. package/build/dex/integral/integral.js +382 -0
  89. package/build/dex/integral/integral.js.map +1 -0
  90. package/build/dex/integral/types.d.ts +84 -0
  91. package/build/dex/integral/types.js +9 -0
  92. package/build/dex/integral/types.js.map +1 -0
  93. package/build/dex/integral/utils.d.ts +6 -0
  94. package/build/dex/integral/utils.js +23 -0
  95. package/build/dex/integral/utils.js.map +1 -0
  96. package/build/dex/lido.d.ts +19 -0
  97. package/build/dex/lido.js +42 -0
  98. package/build/dex/lido.js.map +1 -0
  99. package/build/dex/mStable.js +1 -1
  100. package/build/dex/mStable.js.map +1 -1
  101. package/build/dex/onebit.d.ts +25 -0
  102. package/build/dex/onebit.js +42 -0
  103. package/build/dex/onebit.js.map +1 -0
  104. package/build/dex/oswap/config.d.ts +5 -0
  105. package/build/dex/oswap/config.js +31 -0
  106. package/build/dex/oswap/config.js.map +1 -0
  107. package/build/dex/oswap/oswap-pool.d.ts +51 -0
  108. package/build/dex/oswap/oswap-pool.js +150 -0
  109. package/build/dex/oswap/oswap-pool.js.map +1 -0
  110. package/build/dex/oswap/oswap.d.ts +46 -0
  111. package/build/dex/oswap/oswap.js +266 -0
  112. package/build/dex/oswap/oswap.js.map +1 -0
  113. package/build/dex/oswap/types.d.ts +20 -0
  114. package/build/dex/oswap/types.js +3 -0
  115. package/build/dex/oswap/types.js.map +1 -0
  116. package/build/dex/platypus/asset.d.ts +14 -0
  117. package/build/dex/platypus/asset.js +97 -0
  118. package/build/dex/platypus/asset.js.map +1 -0
  119. package/build/dex/platypus/config.d.ts +11 -0
  120. package/build/dex/platypus/config.js +69 -0
  121. package/build/dex/platypus/config.js.map +1 -0
  122. package/build/dex/platypus/platypus.d.ts +62 -0
  123. package/build/dex/platypus/platypus.js +442 -0
  124. package/build/dex/platypus/platypus.js.map +1 -0
  125. package/build/dex/platypus/pool-avax.d.ts +8 -0
  126. package/build/dex/platypus/pool-avax.js +54 -0
  127. package/build/dex/platypus/pool-avax.js.map +1 -0
  128. package/build/dex/platypus/pool-base.d.ts +19 -0
  129. package/build/dex/platypus/pool-base.js +86 -0
  130. package/build/dex/platypus/pool-base.js.map +1 -0
  131. package/build/dex/platypus/pool-pure.d.ts +8 -0
  132. package/build/dex/platypus/pool-pure.js +37 -0
  133. package/build/dex/platypus/pool-pure.js.map +1 -0
  134. package/build/dex/platypus/pool-subscriber.d.ts +14 -0
  135. package/build/dex/platypus/pool-subscriber.js +167 -0
  136. package/build/dex/platypus/pool-subscriber.js.map +1 -0
  137. package/build/dex/platypus/pool.d.ts +8 -0
  138. package/build/dex/platypus/pool.js +58 -0
  139. package/build/dex/platypus/pool.js.map +1 -0
  140. package/build/dex/platypus/types.d.ts +92 -0
  141. package/build/dex/platypus/types.js +10 -0
  142. package/build/dex/platypus/types.js.map +1 -0
  143. package/build/dex/quickswap/spiritswap-v3.d.ts +6 -0
  144. package/build/dex/quickswap/spiritswap-v3.js +19 -0
  145. package/build/dex/quickswap/spiritswap-v3.js.map +1 -0
  146. package/build/dex/sdai/config.d.ts +11 -0
  147. package/build/dex/sdai/config.js +21 -0
  148. package/build/dex/sdai/config.js.map +1 -0
  149. package/build/dex/sdai/constants.d.ts +2 -0
  150. package/build/dex/sdai/constants.js +6 -0
  151. package/build/dex/sdai/constants.js.map +1 -0
  152. package/build/dex/sdai/scripts/validate-state.d.ts +1 -0
  153. package/build/dex/sdai/scripts/validate-state.js +102 -0
  154. package/build/dex/sdai/scripts/validate-state.js.map +1 -0
  155. package/build/dex/sdai/sdai-pool.d.ts +16 -0
  156. package/build/dex/sdai/sdai-pool.js +85 -0
  157. package/build/dex/sdai/sdai-pool.js.map +1 -0
  158. package/build/dex/sdai/sdai.d.ts +51 -0
  159. package/build/dex/sdai/sdai.js +172 -0
  160. package/build/dex/sdai/sdai.js.map +1 -0
  161. package/build/dex/sdai/types.d.ts +21 -0
  162. package/build/dex/sdai/types.js +11 -0
  163. package/build/dex/sdai/types.js.map +1 -0
  164. package/build/dex/sdai/utils.d.ts +4 -0
  165. package/build/dex/sdai/utils.js +39 -0
  166. package/build/dex/sdai/utils.js.map +1 -0
  167. package/build/dex/simple-exchange.d.ts +1 -1
  168. package/build/dex/simple-exchange.js +4 -2
  169. package/build/dex/simple-exchange.js.map +1 -1
  170. package/build/dex/smardex/config.d.ts +4 -0
  171. package/build/dex/smardex/config.js +64 -0
  172. package/build/dex/smardex/config.js.map +1 -0
  173. package/build/dex/smardex/constants.d.ts +18 -0
  174. package/build/dex/smardex/constants.js +33 -0
  175. package/build/dex/smardex/constants.js.map +1 -0
  176. package/build/dex/smardex/sdk/constants.d.ts +6 -0
  177. package/build/dex/smardex/sdk/constants.js +13 -0
  178. package/build/dex/smardex/sdk/constants.js.map +1 -0
  179. package/build/dex/smardex/sdk/core.d.ts +113 -0
  180. package/build/dex/smardex/sdk/core.js +499 -0
  181. package/build/dex/smardex/sdk/core.js.map +1 -0
  182. package/build/dex/smardex/sdk/errors.d.ts +15 -0
  183. package/build/dex/smardex/sdk/errors.js +22 -0
  184. package/build/dex/smardex/sdk/errors.js.map +1 -0
  185. package/build/dex/smardex/sdk/types.d.ts +62 -0
  186. package/build/dex/smardex/sdk/types.js +3 -0
  187. package/build/dex/smardex/sdk/types.js.map +1 -0
  188. package/build/dex/smardex/sdk/utils.d.ts +44 -0
  189. package/build/dex/smardex/sdk/utils.js +133 -0
  190. package/build/dex/smardex/sdk/utils.js.map +1 -0
  191. package/build/dex/smardex/smardex-event-pool.d.ts +28 -0
  192. package/build/dex/smardex/smardex-event-pool.js +119 -0
  193. package/build/dex/smardex/smardex-event-pool.js.map +1 -0
  194. package/build/dex/smardex/smardex.d.ts +65 -0
  195. package/build/dex/smardex/smardex.js +519 -0
  196. package/build/dex/smardex/smardex.js.map +1 -0
  197. package/build/dex/smardex/types.d.ts +55 -0
  198. package/build/dex/smardex/types.js +3 -0
  199. package/build/dex/smardex/types.js.map +1 -0
  200. package/build/dex/smoothy.d.ts +26 -0
  201. package/build/dex/smoothy.js +48 -0
  202. package/build/dex/smoothy.js.map +1 -0
  203. package/build/dex/solidly/forks-override/cone.d.ts +22 -0
  204. package/build/dex/solidly/forks-override/cone.js +53 -0
  205. package/build/dex/solidly/forks-override/cone.js.map +1 -0
  206. package/build/dex/solidly/forks-override/solisnek.d.ts +8 -0
  207. package/build/dex/solidly/forks-override/solisnek.js +15 -0
  208. package/build/dex/solidly/forks-override/solisnek.js.map +1 -0
  209. package/build/dex/spark/spark.js +2 -1
  210. package/build/dex/spark/spark.js.map +1 -1
  211. package/build/dex/stable-pool.d.ts +28 -0
  212. package/build/dex/stable-pool.js +62 -0
  213. package/build/dex/stable-pool.js.map +1 -0
  214. package/build/dex/swaap-v1/config.d.ts +17 -0
  215. package/build/dex/swaap-v1/config.js +56 -0
  216. package/build/dex/swaap-v1/config.js.map +1 -0
  217. package/build/dex/swaap-v1/constants.d.ts +6 -0
  218. package/build/dex/swaap-v1/constants.js +17 -0
  219. package/build/dex/swaap-v1/constants.js.map +1 -0
  220. package/build/dex/swaap-v1/libraries/ChainlinkUtils.d.ts +25 -0
  221. package/build/dex/swaap-v1/libraries/ChainlinkUtils.js +62 -0
  222. package/build/dex/swaap-v1/libraries/ChainlinkUtils.js.map +1 -0
  223. package/build/dex/swaap-v1/libraries/Const.d.ts +18 -0
  224. package/build/dex/swaap-v1/libraries/Const.js +26 -0
  225. package/build/dex/swaap-v1/libraries/Const.js.map +1 -0
  226. package/build/dex/swaap-v1/libraries/GeometricBrownianMotion.d.ts +77 -0
  227. package/build/dex/swaap-v1/libraries/GeometricBrownianMotion.js +316 -0
  228. package/build/dex/swaap-v1/libraries/GeometricBrownianMotion.js.map +1 -0
  229. package/build/dex/swaap-v1/libraries/LogExpMath.d.ts +75 -0
  230. package/build/dex/swaap-v1/libraries/LogExpMath.js +418 -0
  231. package/build/dex/swaap-v1/libraries/LogExpMath.js.map +1 -0
  232. package/build/dex/swaap-v1/libraries/MathMMM.d.ts +185 -0
  233. package/build/dex/swaap-v1/libraries/MathMMM.js +453 -0
  234. package/build/dex/swaap-v1/libraries/MathMMM.js.map +1 -0
  235. package/build/dex/swaap-v1/libraries/Num.d.ts +31 -0
  236. package/build/dex/swaap-v1/libraries/Num.js +167 -0
  237. package/build/dex/swaap-v1/libraries/Num.js.map +1 -0
  238. package/build/dex/swaap-v1/libraries/PoolQuotations.d.ts +23 -0
  239. package/build/dex/swaap-v1/libraries/PoolQuotations.js +131 -0
  240. package/build/dex/swaap-v1/libraries/PoolQuotations.js.map +1 -0
  241. package/build/dex/swaap-v1/libraries/Struct.d.ts +56 -0
  242. package/build/dex/swaap-v1/libraries/Struct.js +3 -0
  243. package/build/dex/swaap-v1/libraries/Struct.js.map +1 -0
  244. package/build/dex/swaap-v1/swaap-v1-pool.d.ts +45 -0
  245. package/build/dex/swaap-v1/swaap-v1-pool.js +656 -0
  246. package/build/dex/swaap-v1/swaap-v1-pool.js.map +1 -0
  247. package/build/dex/swaap-v1/swaap-v1.d.ts +61 -0
  248. package/build/dex/swaap-v1/swaap-v1.js +369 -0
  249. package/build/dex/swaap-v1/swaap-v1.js.map +1 -0
  250. package/build/dex/swaap-v1/types.d.ts +106 -0
  251. package/build/dex/swaap-v1/types.js +9 -0
  252. package/build/dex/swaap-v1/types.js.map +1 -0
  253. package/build/dex/trader-joe-v2.1.d.ts +43 -0
  254. package/build/dex/trader-joe-v2.1.js +79 -0
  255. package/build/dex/trader-joe-v2.1.js.map +1 -0
  256. package/build/executor/Executor01BytecodeBuilder.js +3 -1
  257. package/build/executor/Executor01BytecodeBuilder.js.map +1 -1
  258. package/build/executor/Executor02BytecodeBuilder.js +3 -1
  259. package/build/executor/Executor02BytecodeBuilder.js.map +1 -1
  260. package/build/executor/Executor03BytecodeBuilder.js +2 -0
  261. package/build/executor/Executor03BytecodeBuilder.js.map +1 -1
  262. package/build/executor/ExecutorBytecodeBuilder.js +2 -0
  263. package/build/executor/ExecutorBytecodeBuilder.js.map +1 -1
  264. package/build/executor/compressor/Compressor.d.ts +23 -0
  265. package/build/executor/compressor/Compressor.js +144 -0
  266. package/build/executor/compressor/Compressor.js.map +1 -0
  267. package/build/executor/compressor/compress.d.ts +17 -0
  268. package/build/executor/compressor/compress.js +187 -0
  269. package/build/executor/compressor/compress.js.map +1 -0
  270. package/build/executor/compressor/compress_functions/addressSubstitution.d.ts +6 -0
  271. package/build/executor/compressor/compress_functions/addressSubstitution.js +29 -0
  272. package/build/executor/compressor/compress_functions/addressSubstitution.js.map +1 -0
  273. package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.d.ts +10 -0
  274. package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js +40 -0
  275. package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js.map +1 -0
  276. package/build/executor/compressor/compress_functions/byteSubstitution.d.ts +11 -0
  277. package/build/executor/compressor/compress_functions/byteSubstitution.js +64 -0
  278. package/build/executor/compressor/compress_functions/byteSubstitution.js.map +1 -0
  279. package/build/executor/compressor/compress_functions/ffSubstitution.d.ts +7 -0
  280. package/build/executor/compressor/compress_functions/ffSubstitution.js +54 -0
  281. package/build/executor/compressor/compress_functions/ffSubstitution.js.map +1 -0
  282. package/build/executor/compressor/compress_functions/findLongestAndSubstitute.d.ts +8 -0
  283. package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js +67 -0
  284. package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js.map +1 -0
  285. package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.d.ts +8 -0
  286. package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js +61 -0
  287. package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js.map +1 -0
  288. package/build/executor/compressor/compress_functions/reverseAddressSubstitution.d.ts +6 -0
  289. package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js +37 -0
  290. package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js.map +1 -0
  291. package/build/executor/compressor/compress_functions/searchUnusedBytes.d.ts +9 -0
  292. package/build/executor/compressor/compress_functions/searchUnusedBytes.js +33 -0
  293. package/build/executor/compressor/compress_functions/searchUnusedBytes.js.map +1 -0
  294. package/build/executor/compressor/fetchSaved.d.ts +0 -0
  295. package/build/executor/compressor/fetchSaved.js +17 -0
  296. package/build/executor/compressor/fetchSaved.js.map +1 -0
  297. package/build/executor/compressor/utils/computeCostL2.d.ts +2 -0
  298. package/build/executor/compressor/utils/computeCostL2.js +14 -0
  299. package/build/executor/compressor/utils/computeCostL2.js.map +1 -0
  300. package/build/executor/compressor/utils/findLongestDuplicatedString.d.ts +2 -0
  301. package/build/executor/compressor/utils/findLongestDuplicatedString.js +30 -0
  302. package/build/executor/compressor/utils/findLongestDuplicatedString.js.map +1 -0
  303. package/build/executor/compressor/utils/getAllIndexes.d.ts +2 -0
  304. package/build/executor/compressor/utils/getAllIndexes.js +12 -0
  305. package/build/executor/compressor/utils/getAllIndexes.js.map +1 -0
  306. package/build/executor/compressor/utils/getByteForAddress.d.ts +2 -0
  307. package/build/executor/compressor/utils/getByteForAddress.js +14 -0
  308. package/build/executor/compressor/utils/getByteForAddress.js.map +1 -0
  309. package/build/executor/compressor/utils/intTo2Bytes.d.ts +2 -0
  310. package/build/executor/compressor/utils/intTo2Bytes.js +14 -0
  311. package/build/executor/compressor/utils/intTo2Bytes.js.map +1 -0
  312. package/build/executor/compressor/utils/intTo3Bytes.d.ts +2 -0
  313. package/build/executor/compressor/utils/intTo3Bytes.js +18 -0
  314. package/build/executor/compressor/utils/intTo3Bytes.js.map +1 -0
  315. package/build/executor/compressor/utils/intToByte.d.ts +2 -0
  316. package/build/executor/compressor/utils/intToByte.js +10 -0
  317. package/build/executor/compressor/utils/intToByte.js.map +1 -0
  318. package/build/types.d.ts +1 -0
  319. package/package.json +1 -1
  320. package/src/dex/aave-v3/aave-v3-e2e.test.ts +4 -9
  321. package/src/dex/aave-v3/aave-v3.ts +5 -0
  322. package/src/dex/aave-v3-stata/aave-v3-stata.ts +1 -0
  323. package/src/dex/angle-staked-stable/angle-staked-stable.ts +8 -0
  324. package/src/dex/compound/compound.ts +5 -0
  325. package/src/dex/etherfi.ts +5 -0
  326. package/src/dex/idle-dao/idle-dao.ts +1 -0
  327. package/src/dex/simple-exchange.ts +5 -5
  328. package/src/dex/spark/spark-e2e.test.ts +9 -1
  329. package/src/dex/spark/spark.ts +5 -0
  330. package/src/executor/Executor01BytecodeBuilder.ts +3 -1
  331. package/src/executor/Executor02BytecodeBuilder.ts +3 -1
  332. package/src/executor/Executor03BytecodeBuilder.ts +2 -0
  333. package/src/executor/ExecutorBytecodeBuilder.ts +2 -0
  334. package/src/executor/executor01-bytecode-builder-e2e.test.ts +25 -0
  335. package/src/executor/executor02-bytecode-builder-e2e.test.ts +29 -0
  336. package/src/types.ts +1 -0
  337. package/tests/constants-e2e.ts +13 -13
  338. package/tests/utils-e2e.ts +1 -1
  339. package/.idea/aws.xml +0 -17
  340. package/.idea/codeStyles/Project.xml +0 -19
  341. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  342. package/.idea/misc.xml +0 -6
  343. package/.idea/modules.xml +0 -8
  344. package/.idea/paraswap-dex-lib.iml +0 -9
  345. package/.idea/prettier.xml +0 -7
  346. package/.idea/vcs.xml +0 -6
@@ -0,0 +1,144 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Compressor = void 0;
7
+ const abi_1 = require("@ethersproject/abi");
8
+ const constants_1 = require("../../constants");
9
+ const decoders_1 = require("../../lib/decoders");
10
+ const Uncompressor_json_1 = __importDefault(require("../../abi/Uncompressor.json"));
11
+ const compress_1 = __importDefault(require("./compress"));
12
+ const lodash_1 = require("lodash");
13
+ const DEFAULT_SAVED_ADDRESS_CACHE_KEY_VALUE = 'true';
14
+ // key = token_uncomporessAddress_network
15
+ // key = token
16
+ class Compressor {
17
+ constructor(network, uncompressorAddress, augustusV6Address, cache, multiWrapper) {
18
+ this.network = network;
19
+ this.uncompressorAddress = uncompressorAddress;
20
+ this.augustusV6Address = augustusV6Address;
21
+ this.multiWrapper = multiWrapper;
22
+ this.uncomporessorInterface = new abi_1.Interface(Uncompressor_json_1.default);
23
+ this.cache = cache;
24
+ this.cacheSavedAddressesKey = `${constants_1.CACHE_PREFIX}_compressed_addresses`;
25
+ }
26
+ async compress(bytecode, priceRoute, executorAddress) {
27
+ const addressesToCompress = this.detectRouteAddresses(priceRoute);
28
+ addressesToCompress.push(this.augustusV6Address);
29
+ addressesToCompress.push(executorAddress);
30
+ let addressesMapping = {};
31
+ addressesToCompress.forEach(address => {
32
+ addressesMapping[address.toLowerCase()] = { saved: false, index: -1 };
33
+ });
34
+ addressesMapping = await this.getSavedAddresses(addressesMapping);
35
+ const allAddressesCached = Object.values(addressesMapping).every(approval => approval.saved === true);
36
+ if (allAddressesCached) {
37
+ return (0, compress_1.default)({
38
+ initialCallData: bytecode,
39
+ addresses: addressesMapping,
40
+ }).compressedData;
41
+ }
42
+ addressesMapping = await this.addOnChainSavedAddress(addressesMapping);
43
+ return (0, compress_1.default)({
44
+ initialCallData: bytecode,
45
+ addresses: addressesMapping,
46
+ }).compressedData;
47
+ }
48
+ detectRouteAddresses(priceRoute) {
49
+ const addresses = new Set();
50
+ addresses.add(priceRoute.srcToken);
51
+ addresses.add(priceRoute.destToken);
52
+ for (const route of priceRoute.bestRoute) {
53
+ for (const swap of route.swaps) {
54
+ addresses.add(swap.srcToken);
55
+ addresses.add(swap.destToken);
56
+ for (const swapExchange of swap.swapExchanges) {
57
+ // the most common fields
58
+ if (swapExchange.data.router)
59
+ addresses.add(swapExchange.data.router);
60
+ if (swapExchange.data.factory)
61
+ addresses.add(swapExchange.data.factory);
62
+ if (swapExchange.poolAddresses) {
63
+ swapExchange.poolAddresses.forEach(address => addresses.add(address));
64
+ }
65
+ }
66
+ }
67
+ }
68
+ return Array.from(addresses);
69
+ }
70
+ async setSavedAddresses(addressesMapping) {
71
+ const addresses = this.filterKeys(addressesMapping, true);
72
+ if (addresses.length === 0)
73
+ return;
74
+ const mappings = Object.fromEntries(addresses.map(key => [
75
+ this.createCacheKey(key),
76
+ addressesMapping[key].index.toString(),
77
+ ]));
78
+ await this.cache.hmset(this.cacheSavedAddressesKey, mappings);
79
+ }
80
+ async getSavedAddresses(addressesMapping) {
81
+ const addresses = Object.keys(addressesMapping);
82
+ if (addresses.length === 0)
83
+ return addressesMapping;
84
+ const savedAddresses = await this.cache.hmget(this.cacheSavedAddressesKey, addresses.map(key => this.createCacheKey(key)));
85
+ savedAddresses.forEach((index, i) => {
86
+ const indexNum = Number.isInteger(index) ? Number(index) : -1;
87
+ addressesMapping[addresses[i]] = {
88
+ saved: Number.isInteger(index),
89
+ index: indexNum,
90
+ };
91
+ });
92
+ return addressesMapping;
93
+ }
94
+ async addOnChainSavedAddress(addressesMapping) {
95
+ const newAddresses = this.filterKeys(addressesMapping, false);
96
+ if (newAddresses.length === 0)
97
+ return addressesMapping;
98
+ const onChainSavedAddresses = await this.getSavedAddressesOnChain(newAddresses);
99
+ const needUpdate = (0, lodash_1.some)(onChainSavedAddresses, v => v.saved);
100
+ if (needUpdate) {
101
+ const setNewAddressesInCache = {};
102
+ Object.entries(onChainSavedAddresses).forEach(([address, { saved, index }]) => {
103
+ if (saved) {
104
+ addressesMapping[address] = { saved, index };
105
+ setNewAddressesInCache[address] = { saved, index };
106
+ }
107
+ });
108
+ await this.setSavedAddresses(setNewAddressesInCache);
109
+ }
110
+ return addressesMapping;
111
+ }
112
+ async getSavedAddressesOnChain(addresses) {
113
+ const callData = addresses.map(address => ({
114
+ target: this.uncompressorAddress,
115
+ callData: this.uncomporessorInterface.encodeFunctionData('addressToByte', [address]),
116
+ decodeFunction: decoders_1.bytes3ToString,
117
+ }));
118
+ const isAddressesSaved = await this.multiWrapper.tryAggregate(false, callData);
119
+ const entries = isAddressesSaved.map((addressResult, i) => {
120
+ const savedOnchain = addressResult.success
121
+ ? parseInt(addressResult.returnData, 16) > 0
122
+ : false;
123
+ const index = savedOnchain ? parseInt(addressResult.returnData, 16) : -1;
124
+ return [
125
+ addresses[i],
126
+ {
127
+ saved: savedOnchain,
128
+ index,
129
+ },
130
+ ];
131
+ });
132
+ return Object.fromEntries(entries);
133
+ }
134
+ createCacheKey(token) {
135
+ return `${token}_${this.uncompressorAddress}_${this.network}`;
136
+ }
137
+ filterKeys(addressesMapping, saved = false) {
138
+ return Object.entries(addressesMapping)
139
+ .filter(([, app]) => app.saved === saved)
140
+ .map(([key]) => key);
141
+ }
142
+ }
143
+ exports.Compressor = Compressor;
144
+ //# sourceMappingURL=Compressor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Compressor.js","sourceRoot":"","sources":["../../../src/executor/compressor/Compressor.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,17 @@
1
+ export declare type AddressesMapping = Record<string, {
2
+ saved: boolean;
3
+ index: number;
4
+ }>;
5
+ interface CompressInput {
6
+ initialCallData: string;
7
+ addresses: AddressesMapping;
8
+ options?: any;
9
+ network?: string;
10
+ }
11
+ interface CompressOutput {
12
+ compressedData: string;
13
+ initialCost: number;
14
+ finalCost: number;
15
+ }
16
+ declare const compress: ({ initialCallData, addresses, options, network, }: CompressInput) => CompressOutput;
17
+ export default compress;
@@ -0,0 +1,187 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const computeCostL2_1 = __importDefault(require("./utils/computeCostL2"));
7
+ const intToByte_1 = __importDefault(require("./utils/intToByte"));
8
+ const searchUnusedBytes_1 = __importDefault(require("./compress_functions/searchUnusedBytes"));
9
+ const byteSubstitution_1 = __importDefault(require("./compress_functions/byteSubstitution"));
10
+ const findLongestAndSubstitute_1 = __importDefault(require("./compress_functions/findLongestAndSubstitute"));
11
+ const addressSubstitution_1 = __importDefault(require("./compress_functions/addressSubstitution"));
12
+ const addressSubstitutionFromObject_1 = __importDefault(require("./compress_functions/addressSubstitutionFromObject"));
13
+ const lodash_1 = require("lodash");
14
+ const zeroByte = '00';
15
+ const ffByte = 'ff';
16
+ const trimHex = (hex) => {
17
+ return hex.startsWith('0x') ? hex.slice(2) : hex;
18
+ };
19
+ const compress = function ({ initialCallData, addresses, options, network, }) {
20
+ if (initialCallData.length % 2 !== 0)
21
+ throw new Error('Initial data of odd length');
22
+ if (!options)
23
+ options = {};
24
+ const initialCost = (0, computeCostL2_1.default)(initialCallData);
25
+ initialCallData = trimHex(initialCallData);
26
+ let callData = initialCallData;
27
+ const savedAddresses = (0, lodash_1.pickBy)(addresses, v => v.saved);
28
+ let newAddresses = Object.keys((0, lodash_1.pickBy)(addresses, v => !v.saved)).map(address => address.substring(2).toLocaleLowerCase());
29
+ // SAVED ADDRESSES SUBSTITUTIONS
30
+ if (!options.skipAddressSubstitution) {
31
+ callData = (0, addressSubstitutionFromObject_1.default)({
32
+ callData,
33
+ addressesObject: savedAddresses,
34
+ });
35
+ }
36
+ if (!options.skipNewAddressSubstitution) {
37
+ // NEW ADDRESSES REMOVING USELESS AND HIGHLIGHTING GOOD
38
+ newAddresses = newAddresses.filter(addr => callData.includes(addr));
39
+ // NEW ADDRESSES SUBSTITUTIONS
40
+ callData = (0, addressSubstitution_1.default)({
41
+ callData,
42
+ addresses: newAddresses,
43
+ isSavedAddresses: false,
44
+ });
45
+ }
46
+ // ZEROES SUBSTITUTIONS
47
+ // I couldn't get ride of 0 around addresses because of potential zeroes absence around addresses in later call data formats
48
+ // An idea could be to have another address prefix to handle this case (one with both sides having 00 by default), but it doesn't optimize that much
49
+ let { compressedCallData, bufferOfOccurences } = (0, byteSubstitution_1.default)({
50
+ byte: zeroByte,
51
+ callData,
52
+ addressPrefix: 'RR',
53
+ newAddressPrefix: 'TT',
54
+ });
55
+ let numberOfZeroes = bufferOfOccurences;
56
+ // console.log({numberOfZeroes})
57
+ // COUNTING BYTES AND CHOSING MAX BYTE IN ZEROES
58
+ // Counting bytes occurences in numberOfZeroes
59
+ let byteCountsInZeroes = {};
60
+ for (let i = 0; i < numberOfZeroes.length; i += 2) {
61
+ const byte = numberOfZeroes.substring(i, i + 2);
62
+ if (!byteCountsInZeroes[byte])
63
+ byteCountsInZeroes[byte] = 1;
64
+ else
65
+ byteCountsInZeroes[byte]++;
66
+ }
67
+ // Finding max byte in numberOfZeroes
68
+ let maxByteInZeroes = '';
69
+ let maxInZeroes = 0;
70
+ for (let byte of Object.keys(byteCountsInZeroes)) {
71
+ if (byteCountsInZeroes[byte] > maxInZeroes) {
72
+ maxInZeroes = byteCountsInZeroes[byte];
73
+ maxByteInZeroes = byte;
74
+ }
75
+ }
76
+ // Substituting max byte of numberOfZeroes in compressedData
77
+ for (let i = 0; i < compressedCallData.length; i += 2) {
78
+ const currentByte = compressedCallData.slice(i, i + 2);
79
+ if (currentByte === zeroByte) {
80
+ if (i < compressedCallData.length - 2) {
81
+ const nextByte = compressedCallData.slice(i + 2, i + 4);
82
+ if (nextByte === maxByteInZeroes) {
83
+ compressedCallData =
84
+ compressedCallData.substring(0, i + 2) +
85
+ zeroByte +
86
+ compressedCallData.substring(i + 4);
87
+ i += 2;
88
+ }
89
+ }
90
+ }
91
+ else if (currentByte === 'RR')
92
+ i += 6;
93
+ else if (currentByte === 'TT')
94
+ i += 2;
95
+ }
96
+ // console.log({maxByteInZeroes, maxInZeroes, compressedCallData})
97
+ // SEARCH FOR UNIQUE ADDRESSES PREFIXES AND DUPLICATED STRING MARKERS
98
+ let { addressPrefix, newAddressPrefix, duplicatedStringMarkers } = (0, searchUnusedBytes_1.default)({
99
+ newAddresses,
100
+ compressedCallData,
101
+ });
102
+ // console.log({addressPrefix, newAddressPrefix, duplicatedStringMarkers})
103
+ // ADDRESSES PREFIX SUBSTITUTIONS
104
+ if (addressPrefix &&
105
+ addressPrefix !== '' &&
106
+ !options.skipAddressSubstitution) {
107
+ const regex = new RegExp('RR', 'g');
108
+ compressedCallData = compressedCallData.replace(regex, addressPrefix);
109
+ }
110
+ else if (addressPrefix === '' && !options.skipAddressSubstitution) {
111
+ // If no unused byte for addressPrefix remove the logic for address
112
+ return compress({
113
+ initialCallData: initialCallData,
114
+ addresses,
115
+ options: {
116
+ skipAddressSubstitution: true,
117
+ skipNewAddressSubstitution: true,
118
+ },
119
+ network,
120
+ });
121
+ }
122
+ else if (options.skipAddressSubstitution) {
123
+ addressPrefix = '00';
124
+ }
125
+ if (newAddressPrefix &&
126
+ newAddressPrefix !== '' &&
127
+ !options.skipNewAddressSubstitution) {
128
+ const regex = new RegExp('TT', 'g');
129
+ compressedCallData = compressedCallData.replace(regex, newAddressPrefix);
130
+ }
131
+ else if (newAddressPrefix === '' &&
132
+ newAddresses.length &&
133
+ !options.skipNewAddressSubstitution) {
134
+ // If no unused byte for newAddressPrefix remove the logic for address
135
+ return compress({
136
+ initialCallData: initialCallData,
137
+ addresses,
138
+ options: {
139
+ skipNewAddressSubstitution: true,
140
+ },
141
+ network,
142
+ });
143
+ }
144
+ // INDEX OF METHOD SUBSTITUTION
145
+ compressedCallData = ffByte + trimHex(compressedCallData);
146
+ const newAddressesString = options.skipNewAddressSubstitution
147
+ ? '00'
148
+ : (0, intToByte_1.default)(newAddresses.length) +
149
+ (newAddresses.length > 0 ? newAddressPrefix : '') +
150
+ newAddresses.join('');
151
+ const prefixCallData = addressPrefix + newAddressesString;
152
+ // SUBSTITUTING FF
153
+ const firstBytes = compressedCallData.substring(0, 2);
154
+ const compressedFFSubstituted = (0, byteSubstitution_1.default)({
155
+ byte: ffByte,
156
+ callData: compressedCallData.substring(2),
157
+ compressedCallData: firstBytes,
158
+ addressPrefix: options.skipAddressSubstitution ? 'RR' : addressPrefix,
159
+ newAddressPrefix: options.skipNewAddressSubstitution
160
+ ? 'TT'
161
+ : newAddressPrefix,
162
+ });
163
+ compressedCallData = compressedFFSubstituted.compressedCallData;
164
+ // FINDING LONGEST RECURRENT STRINGS TO COMPRESS
165
+ let { newCompressedData, nbOfDuplicatedStrings } = (0, findLongestAndSubstitute_1.default)({
166
+ compressedCallData: compressedCallData.substring(2),
167
+ markers: duplicatedStringMarkers,
168
+ });
169
+ if (newCompressedData)
170
+ compressedCallData = firstBytes + newCompressedData;
171
+ if (!maxByteInZeroes)
172
+ maxByteInZeroes = '00';
173
+ compressedCallData =
174
+ '0x' + prefixCallData + maxByteInZeroes + compressedCallData + zeroByte;
175
+ // We append the markers at the end of the string to find them back in the contract
176
+ for (let i = 0; i < nbOfDuplicatedStrings; i++) {
177
+ compressedCallData += duplicatedStringMarkers[i];
178
+ }
179
+ // 0x + address prefix (1B) | nbOfNewAddresses (1B) | newAddressPrefix (0/1B) | newAddresses (n * 20B) |
180
+ // maxByteInZeroes (1B) | FF | compressedData | 00 | duplicatedStringMarkers
181
+ const finalCost = (0, computeCostL2_1.default)(compressedCallData);
182
+ if (compressedCallData.length % 2 !== 0)
183
+ throw new Error('Data of odd length');
184
+ return { compressedData: compressedCallData, initialCost, finalCost };
185
+ };
186
+ exports.default = compress;
187
+ //# sourceMappingURL=compress.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compress.js","sourceRoot":"","sources":["../../../src/executor/compressor/compress.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ declare const addressSubstitution: ({ callData, addresses, isSavedAddresses, }: {
2
+ callData: string;
3
+ addresses: string[];
4
+ isSavedAddresses: boolean;
5
+ }) => string;
6
+ export default addressSubstitution;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const intToByte_1 = __importDefault(require("./../utils/intToByte"));
7
+ const intTo3Bytes_1 = __importDefault(require("../utils/intTo3Bytes"));
8
+ const addressSubstitution = ({ callData, addresses, isSavedAddresses, }) => {
9
+ for (let i = 0; i < addresses.length; i++) {
10
+ if (addresses[i] === '0000000000000000000000000000000000000000')
11
+ continue;
12
+ let index = callData.indexOf(addresses[i]);
13
+ if (index === -1)
14
+ continue;
15
+ while (index !== -1) {
16
+ if (index % 2 === 0) {
17
+ callData =
18
+ callData.substring(0, index) +
19
+ (isSavedAddresses ? 'RR' : 'TT') +
20
+ (!isSavedAddresses ? (0, intToByte_1.default)(i) : (0, intTo3Bytes_1.default)(i)) +
21
+ callData.substring(index + addresses[i].length);
22
+ }
23
+ index = callData.indexOf(addresses[i], index + 1);
24
+ }
25
+ }
26
+ return callData;
27
+ };
28
+ exports.default = addressSubstitution;
29
+ //# sourceMappingURL=addressSubstitution.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"addressSubstitution.js","sourceRoot":"","sources":["../../../../src/executor/compressor/compress_functions/addressSubstitution.ts"],"names":[],"mappings":";;;;;AAAA,qEAA6C;AAC7C,uEAA+C;AAE/C,MAAM,mBAAmB,GAAG,CAAC,EAC3B,QAAQ,EACR,SAAS,EACT,gBAAgB,GAKjB,EAAU,EAAE;IACX,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACzC,IAAI,SAAS,CAAC,CAAC,CAAC,KAAK,0CAA0C;YAAE,SAAS;QAC1E,IAAI,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;QAC3C,IAAI,KAAK,KAAK,CAAC,CAAC;YAAE,SAAS;QAC3B,OAAO,KAAK,KAAK,CAAC,CAAC,EAAE;YACnB,IAAI,KAAK,GAAG,CAAC,KAAK,CAAC,EAAE;gBACnB,QAAQ;oBACN,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAE,KAAK,CAAC;wBAC5B,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC;wBAChC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAA,mBAAS,EAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAA,qBAAW,EAAC,CAAC,CAAC,CAAC;wBACnD,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;aACnD;YACD,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,CAAC,CAAC;SACnD;KACF;IAED,OAAO,QAAQ,CAAC;AAClB,CAAC,CAAC;AAEF,kBAAe,mBAAmB,CAAC"}
@@ -0,0 +1,10 @@
1
+ declare const addressSubstitutionFromObject: ({ callData, addressesObject, }: {
2
+ callData: string;
3
+ addressesObject: {
4
+ [key: string]: {
5
+ saved: boolean;
6
+ index: number;
7
+ };
8
+ };
9
+ }) => string;
10
+ export default addressSubstitutionFromObject;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const intTo3Bytes_1 = __importDefault(require("../utils/intTo3Bytes"));
7
+ const ZERO_ADDRESS = '0000000000000000000000000000000000000000';
8
+ const addressSubstitutionFromObject = ({ callData, addressesObject, }) => {
9
+ const addresses = [];
10
+ for (let i = 0; i < callData.length; i += 2) {
11
+ const callDataPart = callData.slice(i, i + 40);
12
+ const addressObj = addressesObject[`0x${callDataPart}`];
13
+ if (addressObj?.saved)
14
+ addresses.push(callDataPart);
15
+ }
16
+ addresses
17
+ .filter(address => {
18
+ const notZero = address !== ZERO_ADDRESS;
19
+ const inCalldata = callData.indexOf(address) !== -1;
20
+ const isSaved = addressesObject[`0x${address}`].saved;
21
+ return notZero && inCalldata && isSaved;
22
+ })
23
+ .forEach(address => {
24
+ let index = callData.indexOf(address);
25
+ const bytes3 = (0, intTo3Bytes_1.default)(addressesObject[`0x${address}`].index);
26
+ while (index !== -1) {
27
+ if (index % 2 === 0) {
28
+ callData =
29
+ callData.substring(0, index) +
30
+ 'RR' +
31
+ bytes3 +
32
+ callData.substring(index + address.length);
33
+ }
34
+ index = callData.indexOf(address, index + 1);
35
+ }
36
+ });
37
+ return callData;
38
+ };
39
+ exports.default = addressSubstitutionFromObject;
40
+ //# sourceMappingURL=addressSubstitutionFromObject.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"addressSubstitutionFromObject.js","sourceRoot":"","sources":["../../../../src/executor/compressor/compress_functions/addressSubstitutionFromObject.ts"],"names":[],"mappings":";;;;;AAAA,uEAA+C;AAE/C,MAAM,YAAY,GAAG,0CAA0C,CAAC;AAEhE,MAAM,6BAA6B,GAAG,CAAC,EACrC,QAAQ,EACR,eAAe,GAIhB,EAAU,EAAE;IACX,MAAM,SAAS,GAAa,EAAE,CAAC;IAE/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE;QAC3C,MAAM,YAAY,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC;QAC/C,MAAM,UAAU,GAAG,eAAe,CAAC,KAAK,YAAY,EAAE,CAAC,CAAC;QAExD,IAAI,UAAU,EAAE,KAAK;YAAE,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;KACrD;IAED,SAAS;SACN,MAAM,CAAC,OAAO,CAAC,EAAE;QAChB,MAAM,OAAO,GAAG,OAAO,KAAK,YAAY,CAAC;QACzC,MAAM,UAAU,GAAG,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;QACpD,MAAM,OAAO,GAAG,eAAe,CAAC,KAAK,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC;QACtD,OAAO,OAAO,IAAI,UAAU,IAAI,OAAO,CAAC;IAC1C,CAAC,CAAC;SACD,OAAO,CAAC,OAAO,CAAC,EAAE;QACjB,IAAI,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACtC,MAAM,MAAM,GAAG,IAAA,qBAAW,EAAC,eAAe,CAAC,KAAK,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC;QAElE,OAAO,KAAK,KAAK,CAAC,CAAC,EAAE;YACnB,IAAI,KAAK,GAAG,CAAC,KAAK,CAAC,EAAE;gBACnB,QAAQ;oBACN,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAE,KAAK,CAAC;wBAC5B,IAAI;wBACJ,MAAM;wBACN,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;aAC9C;YACD,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,OAAO,EAAE,KAAK,GAAG,CAAC,CAAC,CAAC;SAC9C;IACH,CAAC,CAAC,CAAC;IAEL,OAAO,QAAQ,CAAC;AAClB,CAAC,CAAC;AAEF,kBAAe,6BAA6B,CAAC"}
@@ -0,0 +1,11 @@
1
+ declare const byteSubstitution: ({ byte, callData, compressedCallData, addressPrefix, newAddressPrefix, }: {
2
+ byte: string;
3
+ callData: string;
4
+ compressedCallData?: string | undefined;
5
+ addressPrefix: string;
6
+ newAddressPrefix: string;
7
+ }) => {
8
+ bufferOfOccurences: string;
9
+ compressedCallData: string;
10
+ };
11
+ export default byteSubstitution;
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const intToByte_1 = __importDefault(require("../utils/intToByte"));
7
+ const byteSubstitution = ({ byte, callData, compressedCallData, addressPrefix, newAddressPrefix, }) => {
8
+ let countNoByte = 0; // Count of non-target bytes
9
+ let countByte = 0; // Count of target bytes
10
+ let bufferOfOccurences = ''; // Stores occurrences of target bytes
11
+ if (!compressedCallData)
12
+ compressedCallData = '';
13
+ // Looping through call data byte by byte
14
+ for (let i = 0; i < callData.length; i += 2) {
15
+ let amountToIncreaseI = 0;
16
+ const currentByte = callData.slice(i, i + 2);
17
+ // Handling target byte substitution
18
+ if (currentByte === byte) {
19
+ if (countNoByte > 0 || i == 0) {
20
+ compressedCallData += byte;
21
+ countNoByte = 0;
22
+ }
23
+ // Handle byte count exceeding limit
24
+ if (++countByte > 254) {
25
+ let hexValue = (0, intToByte_1.default)(countByte);
26
+ bufferOfOccurences += hexValue;
27
+ compressedCallData += byte + hexValue;
28
+ countByte = 0;
29
+ }
30
+ continue;
31
+ }
32
+ else {
33
+ // Handle other bytes and address prefixes
34
+ if (countByte > 0) {
35
+ let hexValue = (0, intToByte_1.default)(countByte);
36
+ if (byte === 'ff' && countByte === 1)
37
+ hexValue = '00';
38
+ bufferOfOccurences += hexValue;
39
+ compressedCallData += hexValue;
40
+ countByte = 0;
41
+ }
42
+ // Check for address and new address prefixes
43
+ if (currentByte === addressPrefix || currentByte === newAddressPrefix) {
44
+ let sliceLength = currentByte === addressPrefix ? 8 : 4;
45
+ compressedCallData += callData.slice(i, i + sliceLength);
46
+ amountToIncreaseI = sliceLength - 2;
47
+ countNoByte = 0;
48
+ }
49
+ countNoByte++;
50
+ }
51
+ if (!amountToIncreaseI)
52
+ compressedCallData += callData.slice(i, i + 2);
53
+ i += amountToIncreaseI;
54
+ }
55
+ // Append remaining byte counts after loop
56
+ if (countByte > 0) {
57
+ let hexValue = (0, intToByte_1.default)(countByte);
58
+ bufferOfOccurences += hexValue;
59
+ compressedCallData += hexValue;
60
+ }
61
+ return { bufferOfOccurences, compressedCallData };
62
+ };
63
+ exports.default = byteSubstitution;
64
+ //# sourceMappingURL=byteSubstitution.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"byteSubstitution.js","sourceRoot":"","sources":["../../../../src/executor/compressor/compress_functions/byteSubstitution.ts"],"names":[],"mappings":";;;;;AAAA,mEAA2C;AAE3C,MAAM,gBAAgB,GAAG,CAAC,EACxB,IAAI,EACJ,QAAQ,EACR,kBAAkB,EAClB,aAAa,EACb,gBAAgB,GAOjB,EAA8D,EAAE;IAC/D,IAAI,WAAW,GAAG,CAAC,CAAC,CAAC,4BAA4B;IACjD,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC,wBAAwB;IAC3C,IAAI,kBAAkB,GAAG,EAAE,CAAC,CAAC,qCAAqC;IAElE,IAAI,CAAC,kBAAkB;QAAE,kBAAkB,GAAG,EAAE,CAAC;IAEjD,yCAAyC;IACzC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE;QAC3C,IAAI,iBAAiB,GAAG,CAAC,CAAC;QAC1B,MAAM,WAAW,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;QAE7C,oCAAoC;QACpC,IAAI,WAAW,KAAK,IAAI,EAAE;YACxB,IAAI,WAAW,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE;gBAC7B,kBAAkB,IAAI,IAAI,CAAC;gBAC3B,WAAW,GAAG,CAAC,CAAC;aACjB;YACD,oCAAoC;YACpC,IAAI,EAAE,SAAS,GAAG,GAAG,EAAE;gBACrB,IAAI,QAAQ,GAAG,IAAA,mBAAS,EAAC,SAAS,CAAC,CAAC;gBACpC,kBAAkB,IAAI,QAAQ,CAAC;gBAC/B,kBAAkB,IAAI,IAAI,GAAG,QAAQ,CAAC;gBACtC,SAAS,GAAG,CAAC,CAAC;aACf;YACD,SAAS;SACV;aAAM;YACL,0CAA0C;YAC1C,IAAI,SAAS,GAAG,CAAC,EAAE;gBACjB,IAAI,QAAQ,GAAG,IAAA,mBAAS,EAAC,SAAS,CAAC,CAAC;gBACpC,IAAI,IAAI,KAAK,IAAI,IAAI,SAAS,KAAK,CAAC;oBAAE,QAAQ,GAAG,IAAI,CAAC;gBACtD,kBAAkB,IAAI,QAAQ,CAAC;gBAC/B,kBAAkB,IAAI,QAAQ,CAAC;gBAC/B,SAAS,GAAG,CAAC,CAAC;aACf;YACD,6CAA6C;YAC7C,IAAI,WAAW,KAAK,aAAa,IAAI,WAAW,KAAK,gBAAgB,EAAE;gBACrE,IAAI,WAAW,GAAG,WAAW,KAAK,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACxD,kBAAkB,IAAI,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,CAAC;gBACzD,iBAAiB,GAAG,WAAW,GAAG,CAAC,CAAC;gBACpC,WAAW,GAAG,CAAC,CAAC;aACjB;YACD,WAAW,EAAE,CAAC;SACf;QACD,IAAI,CAAC,iBAAiB;YAAE,kBAAkB,IAAI,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;QACvE,CAAC,IAAI,iBAAiB,CAAC;KACxB;IAED,0CAA0C;IAC1C,IAAI,SAAS,GAAG,CAAC,EAAE;QACjB,IAAI,QAAQ,GAAG,IAAA,mBAAS,EAAC,SAAS,CAAC,CAAC;QACpC,kBAAkB,IAAI,QAAQ,CAAC;QAC/B,kBAAkB,IAAI,QAAQ,CAAC;KAChC;IAED,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,CAAC;AACpD,CAAC,CAAC;AAEF,kBAAe,gBAAgB,CAAC"}
@@ -0,0 +1,7 @@
1
+ declare const ffSubstitution: ({ compressedCallData, indexOfMethods, addressPrefix, newAddressPrefix, }: {
2
+ compressedCallData: string;
3
+ indexOfMethods: number;
4
+ addressPrefix: string;
5
+ newAddressPrefix: string;
6
+ }) => string;
7
+ export default ffSubstitution;
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const intToByte_1 = __importDefault(require("../utils/intToByte"));
7
+ const ffByte = 'ff';
8
+ const zeroByte = '00';
9
+ const ffSubstitution = ({ compressedCallData, indexOfMethods, addressPrefix, newAddressPrefix, }) => {
10
+ let ffCount = 0;
11
+ let maxI;
12
+ const startFFSearch = indexOfMethods > -1 ? 2 : 10;
13
+ for (let i = startFFSearch; i < compressedCallData.length; i += 2) {
14
+ const byte = compressedCallData.substring(i, i + 2);
15
+ maxI = i;
16
+ if (byte === ffByte) {
17
+ if (++ffCount > 254) {
18
+ // in case more than 255 bytes of ff
19
+ compressedCallData =
20
+ compressedCallData.substring(0, i + (1 - ffCount) * 2) +
21
+ (0, intToByte_1.default)(ffCount) +
22
+ compressedCallData.substring(i);
23
+ i -= ffCount * 2;
24
+ i += 2;
25
+ ffCount = 0;
26
+ }
27
+ continue;
28
+ }
29
+ if (ffCount > 0) {
30
+ if (ffCount === 1)
31
+ compressedCallData =
32
+ compressedCallData.substring(0, i) +
33
+ zeroByte +
34
+ compressedCallData.substring(i);
35
+ else {
36
+ compressedCallData =
37
+ compressedCallData.substring(0, i + (1 - ffCount) * 2) +
38
+ (0, intToByte_1.default)(ffCount) +
39
+ compressedCallData.substring(i);
40
+ i -= ffCount * 2;
41
+ }
42
+ i += 2;
43
+ ffCount = 0;
44
+ }
45
+ if (byte === addressPrefix)
46
+ i += 6;
47
+ if (byte === newAddressPrefix)
48
+ i += 2;
49
+ }
50
+ // console.log({ maxI: max, length: compressedCallData.length, compressedCallData });
51
+ return compressedCallData;
52
+ };
53
+ exports.default = ffSubstitution;
54
+ //# sourceMappingURL=ffSubstitution.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ffSubstitution.js","sourceRoot":"","sources":["../../../../src/executor/compressor/compress_functions/ffSubstitution.ts"],"names":[],"mappings":";;;;;AAAA,mEAA2C;AAE3C,MAAM,MAAM,GAAG,IAAI,CAAC;AACpB,MAAM,QAAQ,GAAG,IAAI,CAAC;AAEtB,MAAM,cAAc,GAAG,CAAC,EACtB,kBAAkB,EAClB,cAAc,EACd,aAAa,EACb,gBAAgB,GAMjB,EAAU,EAAE;IACX,IAAI,OAAO,GAAG,CAAC,CAAC;IAChB,IAAI,IAAY,CAAC;IACjB,MAAM,aAAa,GAAG,cAAc,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IACnD,KAAK,IAAI,CAAC,GAAG,aAAa,EAAE,CAAC,GAAG,kBAAkB,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE;QACjE,MAAM,IAAI,GAAG,kBAAkB,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;QACpD,IAAI,GAAG,CAAC,CAAC;QACT,IAAI,IAAI,KAAK,MAAM,EAAE;YACnB,IAAI,EAAE,OAAO,GAAG,GAAG,EAAE;gBACnB,oCAAoC;gBACpC,kBAAkB;oBAChB,kBAAkB,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;wBACtD,IAAA,mBAAS,EAAC,OAAO,CAAC;wBAClB,kBAAkB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;gBAClC,CAAC,IAAI,OAAO,GAAG,CAAC,CAAC;gBACjB,CAAC,IAAI,CAAC,CAAC;gBACP,OAAO,GAAG,CAAC,CAAC;aACb;YACD,SAAS;SACV;QACD,IAAI,OAAO,GAAG,CAAC,EAAE;YACf,IAAI,OAAO,KAAK,CAAC;gBACf,kBAAkB;oBAChB,kBAAkB,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC;wBAClC,QAAQ;wBACR,kBAAkB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;iBAC/B;gBACH,kBAAkB;oBAChB,kBAAkB,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;wBACtD,IAAA,mBAAS,EAAC,OAAO,CAAC;wBAClB,kBAAkB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;gBAClC,CAAC,IAAI,OAAO,GAAG,CAAC,CAAC;aAClB;YACD,CAAC,IAAI,CAAC,CAAC;YACP,OAAO,GAAG,CAAC,CAAC;SACb;QACD,IAAI,IAAI,KAAK,aAAa;YAAE,CAAC,IAAI,CAAC,CAAC;QACnC,IAAI,IAAI,KAAK,gBAAgB;YAAE,CAAC,IAAI,CAAC,CAAC;KACvC;IACD,qFAAqF;IACrF,OAAO,kBAAkB,CAAC;AAC5B,CAAC,CAAC;AAEF,kBAAe,cAAc,CAAC"}
@@ -0,0 +1,8 @@
1
+ declare const findLongestAndSubstitute: ({ compressedCallData, markers, }: {
2
+ compressedCallData: string;
3
+ markers?: string[] | undefined;
4
+ }) => {
5
+ newCompressedData: string;
6
+ nbOfDuplicatedStrings: number;
7
+ };
8
+ export default findLongestAndSubstitute;