@paraswap/dex-lib 4.1.7-pub-sub → 4.1.8

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 (360) hide show
  1. package/.idea/codeStyles/Project.xml +59 -0
  2. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  3. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  4. package/.idea/modules.xml +8 -0
  5. package/.idea/paraswap-dex-lib.iml +12 -0
  6. package/.idea/vcs.xml +6 -0
  7. package/build/dex/angle-staked-stable/angle-staked-stable.js +2 -1
  8. package/build/dex/angle-staked-stable/angle-staked-stable.js.map +1 -1
  9. package/build/dex/angle-transmuter/angle-transmuter.js.map +1 -1
  10. package/build/dex/balancer-v1/config.js +2 -1
  11. package/build/dex/balancer-v1/config.js.map +1 -1
  12. package/build/dex/generic-rfq/generic-rfq.js +2 -1
  13. package/build/dex/generic-rfq/generic-rfq.js.map +1 -1
  14. package/build/dex/generic-rfq/rate-fetcher.d.ts +1 -4
  15. package/build/dex/generic-rfq/rate-fetcher.js +20 -65
  16. package/build/dex/generic-rfq/rate-fetcher.js.map +1 -1
  17. package/build/dex/weth/weth.js +2 -1
  18. package/build/dex/weth/weth.js.map +1 -1
  19. package/build/dex/zerox/index.d.ts +1 -1
  20. package/build/dex/zerox/index.js.map +1 -1
  21. package/build/lib/pub-sub.d.ts +0 -17
  22. package/build/lib/pub-sub.js +4 -84
  23. package/build/lib/pub-sub.js.map +1 -1
  24. package/package.json +1 -1
  25. package/scripts/get-uniswap-v3-dexes.ts +64 -0
  26. package/src/abi/balancer-v3/directionalFeeHook.json +677 -677
  27. package/src/abi/balancer-v3/stableSurgeHook.json +975 -975
  28. package/src/dex/aave-gsm/aave-gsm-gas-estimation.test.ts +32 -0
  29. package/src/dex/aave-v2/aave-v2-gas-estimation.test.ts +28 -0
  30. package/src/dex/aave-v3/aave-v3-gas-estimation.test.ts +66 -0
  31. package/src/dex/aave-v3-stata/aave-v3-stata-gas-estimation.test.ts +41 -0
  32. package/src/dex/aave-v3-stata-v2/aave-v3-stata-v2-gas-estimation.test.ts +41 -0
  33. package/src/dex/angle-staked-stable/angle-staked-stable-gas-estimation.test.ts +29 -0
  34. package/src/dex/angle-staked-stable/angle-staked-stable.ts +2 -1
  35. package/src/dex/angle-transmuter/angle-transmuter-gas-estimation.test.ts +41 -0
  36. package/src/dex/angle-transmuter/angle-transmuter.ts +0 -1
  37. package/src/dex/balancer-v1/balancer-v1-gas-estimation.test.ts +29 -0
  38. package/src/dex/balancer-v1/config.ts +2 -1
  39. package/src/dex/balancer-v2/balancer-v2-gas-estimation.test.ts +98 -0
  40. package/src/dex/balancer-v3/balancer-v3-gas-estimation.test.ts +30 -0
  41. package/src/dex/bancor/bancor-gas-estimation.test.ts +30 -0
  42. package/src/dex/bebop/bebop-gas-estimation.test.ts +30 -0
  43. package/src/dex/concentrator-arusd/concentrator-arusd-gas-estimation.test.ts +29 -0
  44. package/src/dex/curve-v1/curve-v1-gas-estimation.test.ts +29 -0
  45. package/src/dex/curve-v2/curve-v2-gas-estimation.test.ts +29 -0
  46. package/src/dex/fluid-dex/fluid-dex-gas-estimation.test.ts +29 -0
  47. package/src/dex/fx-protocol-rusd/fx-protocol-rusd-gas-estimation.test.ts +29 -0
  48. package/src/dex/generic-rfq/generic-rfq.ts +6 -1
  49. package/src/dex/generic-rfq/rate-fetcher.ts +47 -112
  50. package/src/dex/hashflow/hashflow-gas-estimation.test.ts +30 -0
  51. package/src/dex/idle-dao/idle-dao--gas-estimation.test.ts +30 -0
  52. package/src/dex/lido/lido-gas-estimation.test.ts +29 -0
  53. package/src/dex/lite-psm/lite-psm-gas-estimation.test.ts +34 -0
  54. package/src/dex/maker-psm/maker-psm-gas-estimation.test.ts +34 -0
  55. package/src/dex/maverick-v1/maverick-v1-gas-estimation.test.ts +29 -0
  56. package/src/dex/maverick-v2/maverick-v2-gas-estimation.test.ts +29 -0
  57. package/src/dex/pancakeswap-v3/pancakeswap-v3-gas-estimation.test.ts +29 -0
  58. package/src/dex/polygon-migrator/polygon-migrator-gas-estimation.test.ts +41 -0
  59. package/src/dex/sky-converter/sky-converter-gas-estimation.test.ts +78 -0
  60. package/src/dex/solidly/solidly-gas-estimation.test.ts +29 -0
  61. package/src/dex/solidly-v3/solidly-v3-gas-estimation.test.ts +29 -0
  62. package/src/dex/spark/spark-gas-estimation.test.ts +29 -0
  63. package/src/dex/stader/stader-gas-estimation.test.ts +29 -0
  64. package/src/dex/stkgho/stkgho-gas-estimation.test.ts +29 -0
  65. package/src/dex/swaap-v2/swaap-v2-estimation.test.ts +29 -0
  66. package/src/dex/swell/swell-estimation.test.ts +29 -0
  67. package/src/dex/trader-joe-v2.1/trader-joe-v2.1-gas-estimation.test.ts +29 -0
  68. package/src/dex/uniswap-v2/uniswap-v2-gas-estimation.test.ts +98 -0
  69. package/src/dex/uniswap-v3/uniswap-v3-gas-estimation.test.ts +98 -0
  70. package/src/dex/usual/usual-gas-estimation.test.ts +54 -0
  71. package/src/dex/usual-pp/usual-pp-gas-estimation.test.ts +29 -0
  72. package/src/dex/weth/weth-gas-estimation.test.ts +42 -0
  73. package/src/dex/weth/weth.ts +3 -1
  74. package/src/dex/wombat/wombat-gas-estimation.test.ts +29 -0
  75. package/src/dex/wsteth/wsteth-gas-estimation.test.ts +41 -0
  76. package/src/dex/wusdm/wusdm-gas-estimation.test.ts +41 -0
  77. package/src/lib/pub-sub.ts +3 -107
  78. package/tests/constants-e2e.ts +8 -0
  79. package/tests/tenderly-simulation-new.test.ts +151 -0
  80. package/tests/tenderly-simulation-new.ts +698 -0
  81. package/tests/token-storage-slots.json +532 -0
  82. package/tests/utils-e2e.ts +137 -1
  83. package/build/abi/AaveV1_lending_pool.json +0 -27
  84. package/build/abi/Aave_GSM.json +0 -751
  85. package/build/abi/Balancer.json +0 -257
  86. package/build/abi/BalancerV2.json +0 -1179
  87. package/build/abi/RamsesV2Pool.abi.json +0 -1554
  88. package/build/abi/RamsesV2Quoter.abi.json +0 -274
  89. package/build/abi/USDM.json +0 -807
  90. package/build/abi/UniswapV2Router.json +0 -397
  91. package/build/abi/angle-transmuter/ChainlinkAccessControlledOffchainAggregator.json +0 -1246
  92. package/build/abi/angle-transmuter/ChainlinkEACAggregatorProxy.json +0 -509
  93. package/build/abi/curve-v1/CurveBUSDv2.abi.json +0 -1356
  94. package/build/abi/curve-v1/CurveTokenV1.json +0 -305
  95. package/build/abi/curve-v1/CurveTokenV2.json +0 -318
  96. package/build/abi/curve-v1/CurveV1StableNg.json +0 -1452
  97. package/build/abi/curve-v1/CurveV2Swap.json +0 -700
  98. package/build/abi/curve-v1/FactoryCryptoRegistry.json +0 -316
  99. package/build/abi/curve-v1/FactoryRegistry.json +0 -508
  100. package/build/abi/curve-v1/StableSwapAave.json +0 -1152
  101. package/build/abi/curve-v1/StableSwapBUSD.json +0 -814
  102. package/build/abi/curve-v1/StableSwapCompound.json +0 -814
  103. package/build/abi/curve-v1/StableSwapIDLE.json +0 -1253
  104. package/build/abi/curve-v1/StableSwapPax.json +0 -865
  105. package/build/abi/curve-v1/StableSwapSnow.json +0 -900
  106. package/build/abi/curve-v1/StableSwapUSDN.json +0 -1004
  107. package/build/abi/curve-v1/StableSwapUSDT.json +0 -814
  108. package/build/abi/curve-v1/StableSwapY.json +0 -814
  109. package/build/abi/inception/inception-ineth-pool.json +0 -1062
  110. package/build/abi/inception/inception-ineth.json +0 -609
  111. package/build/abi/inception/inception-ratio-feed.json +0 -329
  112. package/build/abi/inception/inception-vault.json +0 -991
  113. package/build/abi/kyberdmm/kyber-storage.abi.json +0 -824
  114. package/build/abi/kyberdmm.abi.json +0 -1148
  115. package/build/abi/maverick-v2/MaverickV2Quoter.json +0 -278
  116. package/build/abi/nerve/nerve-metapool.json +0 -790
  117. package/build/abi/platypus/asset.json +0 -490
  118. package/build/abi/platypus/avax-pool.json +0 -820
  119. package/build/abi/platypus/oracle.json +0 -119
  120. package/build/abi/platypus/pool.json +0 -677
  121. package/build/abi/smardex/all/smardex-router.json +0 -648
  122. package/build/abi/smardex/layer-1/smardex-factory.json +0 -242
  123. package/build/abi/smardex/layer-1/smardex-pool.json +0 -506
  124. package/build/abi/smardex/layer-2/smardex-factory.json +0 -185
  125. package/build/abi/smardex/layer-2/smardex-pool.json +0 -578
  126. package/build/abi/swaap-v1/pool.json +0 -1346
  127. package/build/abi/uniswap-v3/UniswapV3Quoter.abi.json +0 -193
  128. package/build/abi/velodrome-slipstream/VelodromeSlipstreamQuoterV2.abi.json +0 -267
  129. package/build/dex/aave-v1/aave-v1.d.ts +0 -34
  130. package/build/dex/aave-v1/aave-v1.js +0 -180
  131. package/build/dex/aave-v1/aave-v1.js.map +0 -1
  132. package/build/dex/aave-v1/config.d.ts +0 -11
  133. package/build/dex/aave-v1/config.js +0 -20
  134. package/build/dex/aave-v1/config.js.map +0 -1
  135. package/build/dex/aave-v1/tokens-mainnet.json +0 -134
  136. package/build/dex/aave-v1/tokens.d.ts +0 -3
  137. package/build/dex/aave-v1/tokens.js +0 -50
  138. package/build/dex/aave-v1/tokens.js.map +0 -1
  139. package/build/dex/aave-v1/types.d.ts +0 -12
  140. package/build/dex/aave-v1/types.js +0 -3
  141. package/build/dex/aave-v1/types.js.map +0 -1
  142. package/build/dex/balancer-v1/balancer-pools.json +0 -33333
  143. package/build/dex/bebop/websocket-fetcher.d.ts +0 -35
  144. package/build/dex/bebop/websocket-fetcher.js +0 -87
  145. package/build/dex/bebop/websocket-fetcher.js.map +0 -1
  146. package/build/dex/idle-dao/idle-dao-pool.d.ts +0 -56
  147. package/build/dex/idle-dao/idle-dao-pool.js +0 -176
  148. package/build/dex/idle-dao/idle-dao-pool.js.map +0 -1
  149. package/build/dex/idle-dao/idle-dao-pooling-pool.d.ts +0 -16
  150. package/build/dex/idle-dao/idle-dao-pooling-pool.js +0 -57
  151. package/build/dex/idle-dao/idle-dao-pooling-pool.js.map +0 -1
  152. package/build/dex/idle-dao/scripts.d.ts +0 -9
  153. package/build/dex/idle-dao/scripts.js +0 -552
  154. package/build/dex/idle-dao/scripts.js.map +0 -1
  155. package/build/dex/inception/config.d.ts +0 -4
  156. package/build/dex/inception/config.js +0 -109
  157. package/build/dex/inception/config.js.map +0 -1
  158. package/build/dex/inception/inception-event-pool.d.ts +0 -16
  159. package/build/dex/inception/inception-event-pool.js +0 -51
  160. package/build/dex/inception/inception-event-pool.js.map +0 -1
  161. package/build/dex/inception/inception-native.d.ts +0 -43
  162. package/build/dex/inception/inception-native.js +0 -131
  163. package/build/dex/inception/inception-native.js.map +0 -1
  164. package/build/dex/inception/inception-pool.d.ts +0 -18
  165. package/build/dex/inception/inception-pool.js +0 -32
  166. package/build/dex/inception/inception-pool.js.map +0 -1
  167. package/build/dex/inception/inception-price-feed.d.ts +0 -19
  168. package/build/dex/inception/inception-price-feed.js +0 -51
  169. package/build/dex/inception/inception-price-feed.js.map +0 -1
  170. package/build/dex/inception/inception.d.ts +0 -43
  171. package/build/dex/inception/inception.js +0 -204
  172. package/build/dex/inception/inception.js.map +0 -1
  173. package/build/dex/inception/tokens.d.ts +0 -9
  174. package/build/dex/inception/tokens.js +0 -28
  175. package/build/dex/inception/tokens.js.map +0 -1
  176. package/build/dex/inception/types.d.ts +0 -22
  177. package/build/dex/inception/types.js +0 -3
  178. package/build/dex/inception/types.js.map +0 -1
  179. package/build/dex/inception/utils.d.ts +0 -6
  180. package/build/dex/inception/utils.js +0 -37
  181. package/build/dex/inception/utils.js.map +0 -1
  182. package/build/dex/platypus/asset.d.ts +0 -14
  183. package/build/dex/platypus/asset.js +0 -97
  184. package/build/dex/platypus/asset.js.map +0 -1
  185. package/build/dex/platypus/config.d.ts +0 -11
  186. package/build/dex/platypus/config.js +0 -69
  187. package/build/dex/platypus/config.js.map +0 -1
  188. package/build/dex/platypus/platypus.d.ts +0 -63
  189. package/build/dex/platypus/platypus.js +0 -473
  190. package/build/dex/platypus/platypus.js.map +0 -1
  191. package/build/dex/platypus/pool-avax.d.ts +0 -8
  192. package/build/dex/platypus/pool-avax.js +0 -54
  193. package/build/dex/platypus/pool-avax.js.map +0 -1
  194. package/build/dex/platypus/pool-base.d.ts +0 -19
  195. package/build/dex/platypus/pool-base.js +0 -86
  196. package/build/dex/platypus/pool-base.js.map +0 -1
  197. package/build/dex/platypus/pool-pure.d.ts +0 -8
  198. package/build/dex/platypus/pool-pure.js +0 -37
  199. package/build/dex/platypus/pool-pure.js.map +0 -1
  200. package/build/dex/platypus/pool-subscriber.d.ts +0 -14
  201. package/build/dex/platypus/pool-subscriber.js +0 -167
  202. package/build/dex/platypus/pool-subscriber.js.map +0 -1
  203. package/build/dex/platypus/pool.d.ts +0 -8
  204. package/build/dex/platypus/pool.js +0 -58
  205. package/build/dex/platypus/pool.js.map +0 -1
  206. package/build/dex/platypus/types.d.ts +0 -92
  207. package/build/dex/platypus/types.js +0 -10
  208. package/build/dex/platypus/types.js.map +0 -1
  209. package/build/dex/quickswap/spiritswap-v3.d.ts +0 -6
  210. package/build/dex/quickswap/spiritswap-v3.js +0 -19
  211. package/build/dex/quickswap/spiritswap-v3.js.map +0 -1
  212. package/build/dex/smardex/config.d.ts +0 -4
  213. package/build/dex/smardex/config.js +0 -64
  214. package/build/dex/smardex/config.js.map +0 -1
  215. package/build/dex/smardex/constants.d.ts +0 -18
  216. package/build/dex/smardex/constants.js +0 -33
  217. package/build/dex/smardex/constants.js.map +0 -1
  218. package/build/dex/smardex/sdk/constants.d.ts +0 -6
  219. package/build/dex/smardex/sdk/constants.js +0 -13
  220. package/build/dex/smardex/sdk/constants.js.map +0 -1
  221. package/build/dex/smardex/sdk/core.d.ts +0 -113
  222. package/build/dex/smardex/sdk/core.js +0 -499
  223. package/build/dex/smardex/sdk/core.js.map +0 -1
  224. package/build/dex/smardex/sdk/errors.d.ts +0 -15
  225. package/build/dex/smardex/sdk/errors.js +0 -22
  226. package/build/dex/smardex/sdk/errors.js.map +0 -1
  227. package/build/dex/smardex/sdk/types.d.ts +0 -62
  228. package/build/dex/smardex/sdk/types.js +0 -3
  229. package/build/dex/smardex/sdk/types.js.map +0 -1
  230. package/build/dex/smardex/sdk/utils.d.ts +0 -44
  231. package/build/dex/smardex/sdk/utils.js +0 -133
  232. package/build/dex/smardex/sdk/utils.js.map +0 -1
  233. package/build/dex/smardex/smardex-event-pool.d.ts +0 -28
  234. package/build/dex/smardex/smardex-event-pool.js +0 -119
  235. package/build/dex/smardex/smardex-event-pool.js.map +0 -1
  236. package/build/dex/smardex/smardex.d.ts +0 -65
  237. package/build/dex/smardex/smardex.js +0 -519
  238. package/build/dex/smardex/smardex.js.map +0 -1
  239. package/build/dex/smardex/types.d.ts +0 -55
  240. package/build/dex/smardex/types.js +0 -3
  241. package/build/dex/smardex/types.js.map +0 -1
  242. package/build/dex/solidly/forks-override/cone.d.ts +0 -22
  243. package/build/dex/solidly/forks-override/cone.js +0 -53
  244. package/build/dex/solidly/forks-override/cone.js.map +0 -1
  245. package/build/dex/solidly/forks-override/solisnek.d.ts +0 -8
  246. package/build/dex/solidly/forks-override/solisnek.js +0 -15
  247. package/build/dex/solidly/forks-override/solisnek.js.map +0 -1
  248. package/build/dex/swaap-v1/config.d.ts +0 -17
  249. package/build/dex/swaap-v1/config.js +0 -56
  250. package/build/dex/swaap-v1/config.js.map +0 -1
  251. package/build/dex/swaap-v1/constants.d.ts +0 -6
  252. package/build/dex/swaap-v1/constants.js +0 -17
  253. package/build/dex/swaap-v1/constants.js.map +0 -1
  254. package/build/dex/swaap-v1/libraries/ChainlinkUtils.d.ts +0 -25
  255. package/build/dex/swaap-v1/libraries/ChainlinkUtils.js +0 -62
  256. package/build/dex/swaap-v1/libraries/ChainlinkUtils.js.map +0 -1
  257. package/build/dex/swaap-v1/libraries/Const.d.ts +0 -18
  258. package/build/dex/swaap-v1/libraries/Const.js +0 -26
  259. package/build/dex/swaap-v1/libraries/Const.js.map +0 -1
  260. package/build/dex/swaap-v1/libraries/GeometricBrownianMotion.d.ts +0 -77
  261. package/build/dex/swaap-v1/libraries/GeometricBrownianMotion.js +0 -316
  262. package/build/dex/swaap-v1/libraries/GeometricBrownianMotion.js.map +0 -1
  263. package/build/dex/swaap-v1/libraries/LogExpMath.d.ts +0 -75
  264. package/build/dex/swaap-v1/libraries/LogExpMath.js +0 -418
  265. package/build/dex/swaap-v1/libraries/LogExpMath.js.map +0 -1
  266. package/build/dex/swaap-v1/libraries/MathMMM.d.ts +0 -185
  267. package/build/dex/swaap-v1/libraries/MathMMM.js +0 -453
  268. package/build/dex/swaap-v1/libraries/MathMMM.js.map +0 -1
  269. package/build/dex/swaap-v1/libraries/Num.d.ts +0 -31
  270. package/build/dex/swaap-v1/libraries/Num.js +0 -167
  271. package/build/dex/swaap-v1/libraries/Num.js.map +0 -1
  272. package/build/dex/swaap-v1/libraries/PoolQuotations.d.ts +0 -23
  273. package/build/dex/swaap-v1/libraries/PoolQuotations.js +0 -131
  274. package/build/dex/swaap-v1/libraries/PoolQuotations.js.map +0 -1
  275. package/build/dex/swaap-v1/libraries/Struct.d.ts +0 -56
  276. package/build/dex/swaap-v1/libraries/Struct.js +0 -3
  277. package/build/dex/swaap-v1/libraries/Struct.js.map +0 -1
  278. package/build/dex/swaap-v1/swaap-v1-pool.d.ts +0 -45
  279. package/build/dex/swaap-v1/swaap-v1-pool.js +0 -656
  280. package/build/dex/swaap-v1/swaap-v1-pool.js.map +0 -1
  281. package/build/dex/swaap-v1/swaap-v1.d.ts +0 -62
  282. package/build/dex/swaap-v1/swaap-v1.js +0 -379
  283. package/build/dex/swaap-v1/swaap-v1.js.map +0 -1
  284. package/build/dex/swaap-v1/types.d.ts +0 -106
  285. package/build/dex/swaap-v1/types.js +0 -9
  286. package/build/dex/swaap-v1/types.js.map +0 -1
  287. package/build/executor/fixtures/executor01/exchange-params/price-route-multiswap-balancerv1-curvev1-eth-usdc-gusd.json +0 -16
  288. package/build/executor/fixtures/executor01/exchange-params/price-route-multiswap-balancerv1-sushiv3-wbtc-eth-sushi.json +0 -16
  289. package/build/executor/fixtures/executor01/exchange-params/price-route-multiswap-sushiv3-curvev1-eth-usdc-gusd.json +0 -16
  290. package/build/executor/fixtures/executor01/exchange-params/price-route-multiswap-sushiv3-curvev1-gusd-usdc-eth.json +0 -16
  291. package/build/executor/fixtures/executor01/exchange-params/price-route-multiswap-sushiv3-dai-usdc-eth.json +0 -16
  292. package/build/executor/fixtures/executor01/exchange-params/price-route-multiswap-sushiv3-eth-usdc-dai.json +0 -16
  293. package/build/executor/fixtures/executor01/exchange-params/price-route-multiswap-sushiv3-usdc-eth-wbtc.json +0 -16
  294. package/build/executor/fixtures/executor01/exchange-params/price-route-multiswap-sushiv3-usdt-usdc-dai.json +0 -16
  295. package/build/executor/fixtures/executor01/exchange-params/price-route-simpleSwap-balancerv1-eth-usdc.json +0 -9
  296. package/build/executor/fixtures/executor01/exchange-params/price-route-simpleSwap-balancerv1-usdc-eth.json +0 -9
  297. package/build/executor/fixtures/executor01/exchange-params/price-route-simpleSwap-balancerv1-usdc-wbtc.json +0 -9
  298. package/build/executor/fixtures/executor01/exchange-params/price-route-simpleSwap-curvev1-eth-steth.json +0 -9
  299. package/build/executor/fixtures/executor01/exchange-params/price-route-simpleSwap-curvev1-steth-eth.json +0 -9
  300. package/build/executor/fixtures/executor01/exchange-params/price-route-simpleSwap-curvev1-usdc-usdt.json +0 -9
  301. package/build/executor/fixtures/executor01/exchange-params/price-route-simpleSwap-univ3-eth-usdc.json +0 -9
  302. package/build/executor/fixtures/executor01/exchange-params/price-route-simpleSwap-univ3-usdc-eth.json +0 -9
  303. package/build/executor/fixtures/executor01/exchange-params/price-route-simpleSwap-univ3-usdc-usdt.json +0 -9
  304. package/build/executor/fixtures/executor01/maybe-weth-calldata/price-route-multiswap-balancerv1-sushiv3-wbtc-eth-sushi.json +0 -12
  305. package/build/executor/fixtures/executor01/maybe-weth-calldata/price-route-multiswap-sushiv3-curvev1-eth-usdc-gusd.json +0 -7
  306. package/build/executor/fixtures/executor01/maybe-weth-calldata/price-route-multiswap-sushiv3-curvev1-gusd-usdc-eth.json +0 -7
  307. package/build/executor/fixtures/executor01/maybe-weth-calldata/price-route-multiswap-sushiv3-dai-usdc-eth.json +0 -7
  308. package/build/executor/fixtures/executor01/maybe-weth-calldata/price-route-multiswap-sushiv3-eth-usdc-dai.json +0 -7
  309. package/build/executor/fixtures/executor01/maybe-weth-calldata/price-route-multiswap-sushiv3-usdc-eth-wbtc.json +0 -12
  310. package/build/executor/fixtures/executor01/maybe-weth-calldata/price-route-simpleSwap-univ3-eth-usdc.json +0 -7
  311. package/build/executor/fixtures/executor01/maybe-weth-calldata/price-route-simpleSwap-univ3-usdc-eth.json +0 -7
  312. package/build/executor/fixtures/executor01/routes/price-route-multiswap-balancerv1-curvev1-eth-usdc-gusd.json +0 -78
  313. package/build/executor/fixtures/executor01/routes/price-route-multiswap-balancerv1-sushiv3-wbtc-eth-sushi.json +0 -81
  314. package/build/executor/fixtures/executor01/routes/price-route-multiswap-sushiv3-curvev1-eth-usdc-gusd.json +0 -78
  315. package/build/executor/fixtures/executor01/routes/price-route-multiswap-sushiv3-curvev1-gusd-usdc-eth.json +0 -78
  316. package/build/executor/fixtures/executor01/routes/price-route-multiswap-sushiv3-dai-usdc-eth.json +0 -81
  317. package/build/executor/fixtures/executor01/routes/price-route-multiswap-sushiv3-eth-usdc-dai.json +0 -81
  318. package/build/executor/fixtures/executor01/routes/price-route-multiswap-sushiv3-usdc-eth-wbtc.json +0 -81
  319. package/build/executor/fixtures/executor01/routes/price-route-multiswap-sushiv3-usdt-usdc-dai.json +0 -81
  320. package/build/executor/fixtures/executor01/routes/price-route-simpleSwap-balancerv1-eth-usdc.json +0 -64
  321. package/build/executor/fixtures/executor01/routes/price-route-simpleSwap-balancerv1-usdc-eth.json +0 -85
  322. package/build/executor/fixtures/executor01/routes/price-route-simpleSwap-balancerv1-usdc-wbtc.json +0 -64
  323. package/build/executor/fixtures/executor01/routes/price-route-simpleSwap-curvev1-eth-steth.json +0 -52
  324. package/build/executor/fixtures/executor01/routes/price-route-simpleSwap-curvev1-steth-eth.json +0 -52
  325. package/build/executor/fixtures/executor01/routes/price-route-simpleSwap-curvev1-usdc-usdt.json +0 -52
  326. package/build/executor/fixtures/executor01/routes/price-route-simpleSwap-univ3-eth-usdc.json +0 -55
  327. package/build/executor/fixtures/executor01/routes/price-route-simpleSwap-univ3-usdc-eth.json +0 -55
  328. package/build/executor/fixtures/executor01/routes/price-route-simpleSwap-univ3-usdc-usdt.json +0 -55
  329. package/build/executor/fixtures/executor02/exchange-params/price-route-multiSwap-balancerv1-sushiv3-univ3-bal-eth-sushi.json +0 -23
  330. package/build/executor/fixtures/executor02/exchange-params/price-route-multiSwap-maverickv1-sushiv3-univ3-eth-usdc-mav.json +0 -37
  331. package/build/executor/fixtures/executor02/exchange-params/price-route-multiSwap-univ3-sushiv3-sushi-eth-wbtc.json +0 -23
  332. package/build/executor/fixtures/executor02/exchange-params/price-route-multiSwap-univ3-sushiv3-wbtc-eth-sushi.json +0 -23
  333. package/build/executor/fixtures/executor02/exchange-params/price-route-multiswap-curvev1-univ3-dai-usdc-eth.json +0 -51
  334. package/build/executor/fixtures/executor02/exchange-params/price-route-multiswap-univ3-usdt-dai-eth.json +0 -58
  335. package/build/executor/fixtures/executor02/exchange-params/price-route-simpleSwap-sushiv3-balancerv1-eth-usdc.json +0 -23
  336. package/build/executor/fixtures/executor02/exchange-params/price-route-simpleSwap-sushiv3-balancerv1-usdc-eth.json +0 -23
  337. package/build/executor/fixtures/executor02/exchange-params/price-route-simpleSwap-sushiv3-univ3-eth-sushi.json +0 -9
  338. package/build/executor/fixtures/executor02/exchange-params/price-route-simpleSwap-sushiv3-univ3-sushi-eth.json +0 -16
  339. package/build/executor/fixtures/executor02/exchange-params/price-route-simpleSwap-univ3-curvev1-usdt-dai.json +0 -23
  340. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-multiSwap-balancerv1-sushiv3-univ3-bal-eth-sushi.json +0 -12
  341. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-multiSwap-maverickv1-sushiv3-univ3-eth-usdc-mav.json +0 -7
  342. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-multiSwap-univ3-sushiv3-sushi-eth-wbtc.json +0 -12
  343. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-multiSwap-univ3-sushiv3-wbtc-eth-sushi.json +0 -12
  344. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-multiswap-curvev1-univ3-dai-usdc-eth.json +0 -7
  345. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-multiswap-univ3-usdt-dai-eth.json +0 -7
  346. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-simpleSwap-sushiv3-balancerv1-eth-usdc.json +0 -7
  347. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-simpleSwap-sushiv3-balancerv1-usdc-eth.json +0 -7
  348. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-simpleSwap-sushiv3-univ3-eth-sushi.json +0 -7
  349. package/build/executor/fixtures/executor02/maybe-weth-calldata/price-route-simpleSwap-sushiv3-univ3-sushi-eth.json +0 -7
  350. package/build/executor/fixtures/executor02/routes/price-route-multiSwap-balancerv1-sushiv3-univ3-bal-eth-sushi.json +0 -130
  351. package/build/executor/fixtures/executor02/routes/price-route-multiSwap-maverickv1-sushiv3-univ3-eth-usdc-mav.json +0 -136
  352. package/build/executor/fixtures/executor02/routes/price-route-multiSwap-univ3-sushiv3-sushi-eth-wbtc.json +0 -100
  353. package/build/executor/fixtures/executor02/routes/price-route-multiSwap-univ3-sushiv3-wbtc-eth-sushi.json +0 -100
  354. package/build/executor/fixtures/executor02/routes/price-route-multiswap-curvev1-univ3-dai-usdc-eth.json +0 -166
  355. package/build/executor/fixtures/executor02/routes/price-route-multiswap-univ3-usdt-dai-eth.json +0 -190
  356. package/build/executor/fixtures/executor02/routes/price-route-simpleSwap-sushiv3-balancerv1-eth-usdc.json +0 -114
  357. package/build/executor/fixtures/executor02/routes/price-route-simpleSwap-sushiv3-balancerv1-usdc-eth.json +0 -114
  358. package/build/executor/fixtures/executor02/routes/price-route-simpleSwap-sushiv3-univ3-eth-sushi.json +0 -55
  359. package/build/executor/fixtures/executor02/routes/price-route-simpleSwap-sushiv3-univ3-sushi-eth.json +0 -73
  360. package/build/executor/fixtures/executor02/routes/price-route-simpleSwap-univ3-curvev1-usdt-dai.json +0 -82
@@ -0,0 +1,532 @@
1
+ {
2
+ "1": {
3
+ "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": {
4
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000009",
5
+ "allowanceSlot": "0x000000000000000000000000000000000000000000000000000000000000000a"
6
+ },
7
+ "0xdac17f958d2ee523a2206206994597c13d831ec7": {
8
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002",
9
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000005"
10
+ },
11
+ "0x018008bfb33d285247a21d44e50697654f754e63": {
12
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034",
13
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000035"
14
+ },
15
+ "0xae7ab96520de3a18e5e111b5eaab095312d7fe84": {
16
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
17
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
18
+ },
19
+ "0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f": {
20
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003",
21
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004"
22
+ },
23
+ "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd": {
24
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002",
25
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003"
26
+ },
27
+ "0xdc035d45d973e3ec169d2276ddab16f1e407384f": {
28
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002",
29
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003"
30
+ },
31
+ "0x56072c95faa701256059aa122697b133aded9279": {
32
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002",
33
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003"
34
+ },
35
+ "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2": {
36
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
37
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
38
+ },
39
+ "0x2688fc68c4eac90d9e5e1b94776cf14eade8d877": {
40
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
41
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
42
+ },
43
+ "0x9cacd44cfdf22731bc99facf3531c809d56bd4a2": {
44
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
45
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
46
+ },
47
+ "0x3eb6318b8d9f362a0e1d99f6032edb1c4c602500": {
48
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
49
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
50
+ },
51
+ "0x2b0e31b8ee653d2077db86dea3acf3f34ae9d5d2": {
52
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
53
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
54
+ },
55
+ "0x7b713b1cb6eafd4061064581579ffccf7df21545": {
56
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
57
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
58
+ },
59
+ "0x454bb3cb427b21e1c052a080e21a57753cd6969e": {
60
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
61
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
62
+ },
63
+ "0x20aa3cd83044d2903181f7ef5c2b498a017d1c4a": {
64
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
65
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
66
+ },
67
+ "0x2a84a042db06222c486bcb815e961f26599d0df6": {
68
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
69
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
70
+ },
71
+ "0xf3188697bd35df73e4293d04a07ebaaf1ffc4018": {
72
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
73
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
74
+ },
75
+ "0xb8d0be502a8f12cc5213733285b430a43d07349d": {
76
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
77
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
78
+ },
79
+ "0xdf17c739b666b259da3416d01f0310a6e429f592": {
80
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
81
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
82
+ },
83
+ "0x990b3af34ddb502715e1070ce6778d8eb3c8ea82": {
84
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
85
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
86
+ },
87
+ "0x4c9edd5852cd905f086c759e8383e09bff1e68b3": {
88
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002",
89
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003"
90
+ },
91
+ "0xa35b1b31ce002fbf2058d22f30f95d405200a15b": {
92
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
93
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
94
+ },
95
+ "0xf951e335afb289353dc249e82926178eac7ded78": {
96
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000062",
97
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000063"
98
+ },
99
+ "0x0d8775f648430679a709e98d2b0cb6250d2887ef": {
100
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
101
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
102
+ },
103
+ "0xfae103dc9cf190ed75350761e95403b7b8afa6c0": {
104
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000062",
105
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000063"
106
+ },
107
+ "0x8f8221afbb33998d8584a2b05749ba73c37a938a": {
108
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
109
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
110
+ },
111
+ "0x6f40d4a6237c257fff2db00fa0510deeecd303eb": {
112
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000007",
113
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000006"
114
+ },
115
+ "0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c": {
116
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034",
117
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000035"
118
+ },
119
+ "0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8": {
120
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034",
121
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000035"
122
+ },
123
+ "0x7448c7456a97769f6cd04f1e83a4a23ccdc46abd": {
124
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000007",
125
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000008"
126
+ },
127
+ "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2": {
128
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
129
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
130
+ },
131
+ "0x39aa39c021dfbae8fac545936693ac917d5e7563": {
132
+ "balanceSlot": "0x000000000000000000000000000000000000000000000000000000000000000f",
133
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000010"
134
+ },
135
+ "0x0000000000085d4780b73119b644ae5ecd22b376": {
136
+ "balanceSlot": "0x000000000000000000000000000000000000000000000000000000000000000e",
137
+ "allowanceSlot": "0x000000000000000000000000000000000000000000000000000000000000000f"
138
+ },
139
+ "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
140
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
141
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
142
+ },
143
+ "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6": {
144
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003",
145
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004"
146
+ },
147
+ "0x18084fba666a33d37592fa2633fd49a74dd93a88": {
148
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
149
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
150
+ },
151
+ "0x3472a5a71965499acd81997a54bba8d852c6e53d": {
152
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000008",
153
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000009"
154
+ },
155
+ "0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef": {
156
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
157
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
158
+ },
159
+ "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": {
160
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
161
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
162
+ },
163
+ "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": {
164
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
165
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
166
+ },
167
+ "0x5e8422345238f34275888049021821e8e08caa1f": {
168
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
169
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
170
+ },
171
+ "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
172
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003",
173
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004"
174
+ },
175
+ "0xcafe001067cdef266afb7eb5a286dcfd277f3de5": {
176
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004",
177
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003"
178
+ },
179
+ "0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb": {
180
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003",
181
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004"
182
+ },
183
+ "0x514910771af9ca656af840dff83e8264ecf986ca": {
184
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
185
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
186
+ },
187
+ "0x6b175474e89094c44da98b954eedeac495271d0f": {
188
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002",
189
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003"
190
+ },
191
+ "0xec67005c4e498ec7f55e092bd1d35cbc47c91892": {
192
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
193
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
194
+ },
195
+ "0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037": {
196
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000005",
197
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000006"
198
+ },
199
+ "0x853d955acef822db058eb8505911ed77f175b99e": {
200
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
201
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
202
+ },
203
+ "0x028171bca77440897b824ca71d1c56cac55b68a3": {
204
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034",
205
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000035"
206
+ },
207
+ "0xf8fd466f12e236f4c96f7cce6c79eadb819abf58": {
208
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034",
209
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000035"
210
+ },
211
+ "0xbc6da0fe9ad5f3b0d58160288917aa56653660e9": {
212
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
213
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
214
+ },
215
+ "0xba100000625a3754423978a60c9317c58a424e3d": {
216
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
217
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
218
+ },
219
+ "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5": {
220
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
221
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
222
+ },
223
+ "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf": {
224
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
225
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
226
+ },
227
+ "0x66a0f676479cee1d7373f3dc2e2952778bff5bd6": {
228
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
229
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
230
+ },
231
+ "0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20": {
232
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004",
233
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000005"
234
+ },
235
+ "0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd": {
236
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004",
237
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000005"
238
+ },
239
+ "0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6": {
240
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
241
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
242
+ },
243
+ "0x030ba81f1c18d280636f32af80b9aad02cf0854e": {
244
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034",
245
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000035"
246
+ },
247
+ "0xa1faa113cbe53436df28ff0aee54275c13b40975": {
248
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
249
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
250
+ },
251
+ "0x111111111117dc0aa78b770fa6a738034120c302": {
252
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
253
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
254
+ },
255
+ "0xe2f2a5c287993345a840db3b0845fbc70f5935a5": {
256
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
257
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
258
+ },
259
+ "0x945facb997494cc2570096c74b5f66a3507330a1": {
260
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
261
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
262
+ },
263
+ "0x0316eb71485b0ab14103307bf65a021042c6d380": {
264
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004",
265
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000005"
266
+ },
267
+ "0x8daebade922df735c38c80c7ebd708af50815faa": {
268
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003",
269
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004"
270
+ },
271
+ "0x4fabb145d64652a948d72533023f6e7a623c7c53": {
272
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
273
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003"
274
+ },
275
+ "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd": {
276
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000006",
277
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000007"
278
+ },
279
+ "0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d": {
280
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
281
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
282
+ },
283
+ "0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5": {
284
+ "balanceSlot": "0x000000000000000000000000000000000000000000000000000000000000000f",
285
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000010"
286
+ },
287
+ "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643": {
288
+ "balanceSlot": "0x000000000000000000000000000000000000000000000000000000000000000e",
289
+ "allowanceSlot": "0x000000000000000000000000000000000000000000000000000000000000000f"
290
+ },
291
+ "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3": {
292
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
293
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
294
+ },
295
+ "0xdb25f211ab05b1c97d595516f45794528a807ad8": {
296
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
297
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
298
+ },
299
+ "0x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b": {
300
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
301
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
302
+ },
303
+ "0x53dfea0a8cc2a2a2e425e1c174bc162999723ea0": {
304
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
305
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
306
+ },
307
+ "0x7409856cae628f5d578b285b45669b36e7005283": {
308
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
309
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
310
+ },
311
+ "0x68749665ff8d2d112fa859aa293f07a622782f38": {
312
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
313
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
314
+ },
315
+ "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b": {
316
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
317
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
318
+ },
319
+ "0xa47c8bf37f92abed4a126bda807a7b7498661acd": {
320
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
321
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
322
+ },
323
+ "0x8b3192f5eebd8579568a2ed41e6feb402f93f73f": {
324
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
325
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003"
326
+ },
327
+ "0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c": {
328
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
329
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
330
+ },
331
+ "0x804cdb9116a10bb78768d3252355a1b18067bf8f": {
332
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
333
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
334
+ },
335
+ "0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2": {
336
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
337
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
338
+ },
339
+ "0x8f4063446f5011bc1c9f79a819efe87776f23704": {
340
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
341
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
342
+ },
343
+ "0x956f47f50a910163d8bf957cf5846d573e7f87ca": {
344
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
345
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
346
+ },
347
+ "0x57ab1ec28d129707052df4df418d58a2d46d5f51": {
348
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003",
349
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004"
350
+ },
351
+ "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6": {
352
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
353
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
354
+ },
355
+ "0x0100546f2cd4c9d97f798ffc9755e47865ff7ee6": {
356
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
357
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
358
+ },
359
+ "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce": {
360
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
361
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
362
+ },
363
+ "0xc411db5f5eb3f7d552f9b8454b2d74097ccde6e3": {
364
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
365
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
366
+ },
367
+ "0x1a7e4e63778b4f12a199c062f3efdd288afcbce8": {
368
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
369
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
370
+ },
371
+ "0x1abaea1f7c830bd89acc67ec4af516284b1bc33c": {
372
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000009",
373
+ "allowanceSlot": "0x000000000000000000000000000000000000000000000000000000000000000a"
374
+ },
375
+ "0x004626a008b1acdc4c74ab51644093b155e59a23": {
376
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
377
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
378
+ },
379
+ "0x0000206329b97db379d5e1bf586bbdb969c63274": {
380
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
381
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
382
+ },
383
+ "0xbeef01735c132ada46aa9aa4c54623caa92a64cb": {
384
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
385
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
386
+ },
387
+ "0x0022228a2cc5e7ef0274a7baa600d44da5ab5776": {
388
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
389
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
390
+ },
391
+ "0x1a88df1cfe15af22b3c4c783d4e6f7f9e0c1885d": {
392
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
393
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
394
+ },
395
+ "0x8751d4196027d4e6da63716fa7786b5174f04c15": {
396
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
397
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
398
+ },
399
+ "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0": {
400
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
401
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
402
+ },
403
+ "0x455e53cbb86018ac2b8092fdcd39d8444affc3f6": {
404
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
405
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
406
+ },
407
+ "0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a": {
408
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034",
409
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000035"
410
+ },
411
+ "0x5f98805a4e8be255a32880fdec7f6728c6568ba0": {
412
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002",
413
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003"
414
+ },
415
+ "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c": {
416
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000005",
417
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000006"
418
+ },
419
+ "0x83f20f44975d03b1b09e64809b757c47f942beea": {
420
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
421
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
422
+ },
423
+ "0x862c57d48becb45583aeba3f489696d22466ca1b": {
424
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000005",
425
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000006"
426
+ },
427
+ "0x23878914efe38d27c4d67ab83ed1b93a74d4086a": {
428
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034",
429
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000035"
430
+ },
431
+ "0x07d1718ff05a8c53c8f05adaed57c0d672945f9a": {
432
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
433
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
434
+ },
435
+ "0x7751e2f4b8ae93ef6b79d86419d42fe3295a4559": {
436
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000033",
437
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000034"
438
+ },
439
+ "0x437cc33344a0b27a429f795ff6b469c72698b291": {
440
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000006",
441
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000002"
442
+ },
443
+ "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee": {
444
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000065",
445
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000066"
446
+ },
447
+ "0x35fa164735182de50811e8e2e824cfb9b6118ac2": {
448
+ "balanceSlot": "0x00000000000000000000000000000000000000000000000000000000000000cb",
449
+ "allowanceSlot": "0x00000000000000000000000000000000000000000000000000000000000000cc"
450
+ },
451
+ "0xd46ba6d942050d489dbd938a2c909a5d5039a161": {
452
+ "balanceSlot": "0x000000000000000000000000000000000000000000000000000000000000009e",
453
+ "allowanceSlot": "0x000000000000000000000000000000000000000000000000000000000000009f"
454
+ },
455
+ "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": {
456
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000165",
457
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000167"
458
+ },
459
+ "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d": {
460
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000066",
461
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000067"
462
+ },
463
+ "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb": {
464
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000097",
465
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000098"
466
+ },
467
+ "0xc581b735a1688071a1746c968e0798d642ede491": {
468
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000065",
469
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000066"
470
+ },
471
+ "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": {
472
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000065",
473
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000066"
474
+ },
475
+ "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": {
476
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000065",
477
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000066"
478
+ },
479
+ "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": {
480
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000065",
481
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000066"
482
+ },
483
+ "0x65d72aa8da931f047169112fcf34f52dbaae7d18": {
484
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000097",
485
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000098"
486
+ },
487
+ "0x4cbc25559dbbd1272ec5b64c7b5f48a2405e6470": {
488
+ "balanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00",
489
+ "allowanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace01"
490
+ },
491
+ "0x7bc3485026ac48b6cf9baf0a377477fff5703af8": {
492
+ "balanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00",
493
+ "allowanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace01"
494
+ },
495
+ "0xd4fa2d31b7968e448877f69a96de69f5de8cd23e": {
496
+ "balanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00",
497
+ "allowanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace01"
498
+ },
499
+ "0x73a15fed60bf67631dc6cd7bc5b6e8da8190acf5": {
500
+ "balanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00",
501
+ "allowanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace01"
502
+ },
503
+ "0x35d8949372d46b7a3d5a56006ae77b215fc69bc0": {
504
+ "balanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00",
505
+ "allowanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace01"
506
+ },
507
+ "0xd533a949740bb3306d119cc777fa900ba034cd52": {
508
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000003",
509
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000004",
510
+ "isVyper": true
511
+ },
512
+ "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e": {
513
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001",
514
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
515
+ "isVyper": true
516
+ },
517
+ "0x252231882fb38481497f3c767469106297c8d93b": {
518
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000005",
519
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000006"
520
+ },
521
+ "0x0bfc9d54fc184518a81162f8fb99c2eaca081202": {
522
+ "balanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00",
523
+ "allowanceSlot": "0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace01"
524
+ }
525
+ },
526
+ "8453": {
527
+ "0x50c5725949a6f0c72e6c4a641f24049a917db0cb": {
528
+ "balanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000000",
529
+ "allowanceSlot": "0x0000000000000000000000000000000000000000000000000000000000000001"
530
+ }
531
+ }
532
+ }