@dhedge/trading-widget 3.5.8-canary.2 → 3.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (431) hide show
  1. package/core-kit/abi/aave/aave-asset-guard.d.ts +50 -0
  2. package/core-kit/abi/aave/aave-lending-pool.d.ts +846 -0
  3. package/core-kit/abi/dhedge-staking-v2.d.ts +127 -0
  4. package/core-kit/abi/easy-swapper-v2.d.ts +1042 -0
  5. package/core-kit/abi/erc20.d.ts +1 -0
  6. package/core-kit/abi/flatcoin-points-module.d.ts +57 -0
  7. package/core-kit/abi/index.d.ts +12 -0
  8. package/core-kit/abi/limit-order.d.ts +736 -0
  9. package/core-kit/abi/pool-factory.d.ts +57 -0
  10. package/core-kit/abi/pool-logic.d.ts +307 -0
  11. package/core-kit/abi/pool-manager-logic.d.ts +107 -0
  12. package/core-kit/abi/reward-distribution.d.ts +121 -0
  13. package/core-kit/abi/synthetix-v3/i-trusted-multicall-forwarder.d.ts +41 -0
  14. package/core-kit/abi/synthetix-v3/ierc-7412.d.ts +53 -0
  15. package/core-kit/abi/synthetix-v3/index.d.ts +5 -0
  16. package/core-kit/abi/synthetix-v3/synthetix-v3-asset-guard.d.ts +37 -0
  17. package/core-kit/abi/synthetix-v3/synthetix-v3-contract-guard.d.ts +45 -0
  18. package/core-kit/abi/synthetix-v3/synthetix-v3-core.d.ts +41 -0
  19. package/core-kit/const/config.d.ts +13 -0
  20. package/core-kit/const/contracts/arbitrum.d.ts +4 -0
  21. package/core-kit/const/contracts/base.d.ts +8 -0
  22. package/core-kit/const/contracts/index.d.ts +5 -0
  23. package/core-kit/const/contracts/optimism.d.ts +5 -0
  24. package/core-kit/const/contracts/polygon.d.ts +4 -0
  25. package/core-kit/const/currency.d.ts +2 -0
  26. package/core-kit/const/default-data.d.ts +28 -0
  27. package/core-kit/const/error.d.ts +14 -0
  28. package/core-kit/const/flat-money.d.ts +10 -0
  29. package/core-kit/const/index.d.ts +13 -0
  30. package/core-kit/const/links.d.ts +3 -0
  31. package/core-kit/const/logger.d.ts +40 -0
  32. package/core-kit/const/network.d.ts +682 -0
  33. package/core-kit/const/synthetix.d.ts +6 -0
  34. package/core-kit/const/tokens/arbitrum.d.ts +8 -0
  35. package/core-kit/const/tokens/base.d.ts +9 -0
  36. package/core-kit/const/tokens/index.d.ts +9 -0
  37. package/core-kit/const/tokens/optimism.d.ts +12 -0
  38. package/core-kit/const/tokens/polygon.d.ts +10 -0
  39. package/core-kit/const/trading.d.ts +10 -0
  40. package/core-kit/const/web3.d.ts +4 -0
  41. package/core-kit/hooks/component/index.d.ts +2 -0
  42. package/core-kit/hooks/component/panel.d.ts +1 -0
  43. package/core-kit/hooks/component/tab.d.ts +2 -0
  44. package/core-kit/hooks/pool/index.d.ts +16 -0
  45. package/core-kit/hooks/pool/multicall/index.d.ts +4 -0
  46. package/core-kit/hooks/pool/multicall/use-pool-manager.dynamic.d.ts +230 -0
  47. package/core-kit/hooks/pool/multicall/use-pool-manager.static.d.ts +340 -0
  48. package/core-kit/hooks/pool/multicall/use-pool.static.d.ts +2434 -0
  49. package/core-kit/hooks/pool/multicall/use-pools.dynamic.d.ts +1096 -0
  50. package/core-kit/hooks/pool/synthetixV3/use-pool-token-price-mutable.d.ts +8 -0
  51. package/core-kit/hooks/pool/synthetixV3/use-synthetix-v3-asset-balance.d.ts +8 -0
  52. package/core-kit/hooks/pool/synthetixV3/use-total-funds-value-mutable.d.ts +8 -0
  53. package/core-kit/hooks/pool/use-check-whitelist.d.ts +2 -0
  54. package/core-kit/hooks/pool/use-contract-pool-composition.d.ts +3 -0
  55. package/core-kit/hooks/pool/use-has-nested-vault-in-composition.d.ts +64 -0
  56. package/core-kit/hooks/pool/use-invalidate-pool-contract-data.d.ts +1 -0
  57. package/core-kit/hooks/pool/use-manager-logic-address.d.ts +2 -0
  58. package/core-kit/hooks/pool/use-pool-composition-with-fraction.d.ts +14 -0
  59. package/core-kit/hooks/pool/use-pool-composition.d.ts +3 -0
  60. package/core-kit/hooks/pool/use-pool-dynamic-contract-data.d.ts +20 -0
  61. package/core-kit/hooks/pool/use-pool-dynamic-exit-remaining-cooldown.d.ts +276 -0
  62. package/core-kit/hooks/pool/use-pool-fees.d.ts +14 -0
  63. package/core-kit/hooks/pool/use-pool-manager-logic-data.d.ts +16 -0
  64. package/core-kit/hooks/pool/use-pool-token-price.d.ts +9 -0
  65. package/core-kit/hooks/pool/use-vault-vested-points.d.ts +73 -0
  66. package/core-kit/hooks/referral/index.d.ts +1 -0
  67. package/core-kit/hooks/referral/use-referral-program.d.ts +2 -0
  68. package/core-kit/hooks/state/action.d.ts +25 -0
  69. package/core-kit/hooks/state/context.d.ts +2 -0
  70. package/core-kit/hooks/state/default-data.d.ts +1 -0
  71. package/core-kit/hooks/state/index.d.ts +9 -0
  72. package/core-kit/hooks/state/input.d.ts +13 -0
  73. package/core-kit/hooks/state/modal.d.ts +5 -0
  74. package/core-kit/hooks/state/pool.d.ts +14 -0
  75. package/core-kit/hooks/state/settings.d.ts +5 -0
  76. package/core-kit/hooks/state/transaction.d.ts +5 -0
  77. package/core-kit/hooks/state/type.d.ts +6 -0
  78. package/core-kit/hooks/trading/allowance/index.d.ts +3 -0
  79. package/core-kit/hooks/trading/allowance/use-approve.d.ts +9 -0
  80. package/core-kit/hooks/trading/allowance/use-can-spend.d.ts +11 -0
  81. package/core-kit/hooks/trading/allowance/use-token-allowance-handler.d.ts +1 -0
  82. package/core-kit/hooks/trading/deposit-v2/index.d.ts +16 -0
  83. package/core-kit/hooks/trading/deposit-v2/use-applied-deposit-slippage.d.ts +1 -0
  84. package/core-kit/hooks/trading/deposit-v2/use-deposit-allowance.d.ts +4 -0
  85. package/core-kit/hooks/trading/deposit-v2/use-deposit-lock-time.d.ts +1 -0
  86. package/core-kit/hooks/trading/deposit-v2/use-deposit-price-diff.d.ts +5 -0
  87. package/core-kit/hooks/trading/deposit-v2/use-deposit-quote-contract-read.d.ts +1043 -0
  88. package/core-kit/hooks/trading/deposit-v2/use-deposit-quote.d.ts +1 -0
  89. package/core-kit/hooks/trading/deposit-v2/use-deposit-slippage.d.ts +1 -0
  90. package/core-kit/hooks/trading/deposit-v2/use-deposit.d.ts +2 -0
  91. package/core-kit/hooks/trading/deposit-v2/use-handle-pool-deposit-data.d.ts +1 -0
  92. package/core-kit/hooks/trading/deposit-v2/use-is-custom-cooldown-deposit.d.ts +1 -0
  93. package/core-kit/hooks/trading/deposit-v2/use-is-deposit-with-swap-transaction.d.ts +1 -0
  94. package/core-kit/hooks/trading/deposit-v2/use-is-vault-deposit-locked.d.ts +4 -0
  95. package/core-kit/hooks/trading/deposit-v2/use-min-vault-tokens-received-amount.d.ts +1 -0
  96. package/core-kit/hooks/trading/deposit-v2/use-swap-data-based-on-send-token.d.ts +1 -0
  97. package/core-kit/hooks/trading/deposit-v2/use-vault-deposit-params.d.ts +2 -0
  98. package/core-kit/hooks/trading/deposit-v2/use-vault-deposit-token-amount.d.ts +1 -0
  99. package/core-kit/hooks/trading/deposit-v2/use-vault-deposit-tokens.d.ts +2 -0
  100. package/core-kit/hooks/trading/deposit-v2/use-vault-deposit-transaction-arguments.d.ts +2 -0
  101. package/core-kit/hooks/trading/index.d.ts +14 -0
  102. package/core-kit/hooks/trading/projected-earnings/use-deposit-projected-earnings.d.ts +2 -0
  103. package/core-kit/hooks/trading/projected-earnings/use-projected-earnings-core.d.ts +10 -0
  104. package/core-kit/hooks/trading/synthetix-v3/use-available-withdraw-liquidity.d.ts +47 -0
  105. package/core-kit/hooks/trading/synthetix-v3/use-oracles-update-transaction-data.d.ts +23 -0
  106. package/core-kit/hooks/trading/synthetix-v3/use-send-oracles-update-transaction.d.ts +4 -0
  107. package/core-kit/hooks/trading/synthetix-v3/use-synthetix-v3-oracles-update.d.ts +7 -0
  108. package/core-kit/hooks/trading/synthetix-v3/use-withdraw-liquidity.d.ts +5 -0
  109. package/core-kit/hooks/trading/use-asset-price.d.ts +8 -0
  110. package/core-kit/hooks/trading/use-easy-swapper-tracked-assets.d.ts +1046 -0
  111. package/core-kit/hooks/trading/use-exchange-rate.d.ts +5 -0
  112. package/core-kit/hooks/trading/use-handle-trade.d.ts +6 -0
  113. package/core-kit/hooks/trading/use-is-trading-enabled.d.ts +1 -0
  114. package/core-kit/hooks/trading/use-is-transaction-loading.d.ts +2 -0
  115. package/core-kit/hooks/trading/use-raw-asset-price.d.ts +8 -0
  116. package/core-kit/hooks/trading/use-send-token-debounced-value.d.ts +8 -0
  117. package/core-kit/hooks/trading/use-swap-data-query.d.ts +6 -0
  118. package/core-kit/hooks/trading/use-swaps-data-query.d.ts +13 -0
  119. package/core-kit/hooks/trading/use-trading-result-handling.d.ts +1 -0
  120. package/core-kit/hooks/trading/use-trading-settle-handler.d.ts +3 -0
  121. package/core-kit/hooks/trading/withdraw-v2/complete-step/index.d.ts +10 -0
  122. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-complete-withdraw-expected-amount.d.ts +4 -0
  123. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-complete-withdraw-quote.d.ts +1 -0
  124. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-complete-withdraw-receive-diff.d.ts +1 -0
  125. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-complete-withdraw-swap-data.d.ts +1 -0
  126. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-complete-withdraw-total-usd-value.d.ts +1 -0
  127. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-complete-withdraw-tracked-assets.d.ts +210 -0
  128. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-complete-withdraw-transaction.d.ts +6 -0
  129. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-handle-complete-withdraw.d.ts +11 -0
  130. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-has-swappable-assets.d.ts +1 -0
  131. package/core-kit/hooks/trading/withdraw-v2/complete-step/use-is-complete-withdraw-step.d.ts +4 -0
  132. package/core-kit/hooks/trading/withdraw-v2/index.d.ts +4 -0
  133. package/core-kit/hooks/trading/withdraw-v2/init-step/index.d.ts +6 -0
  134. package/core-kit/hooks/trading/withdraw-v2/init-step/use-fetch-aave-swap-params.d.ts +6 -0
  135. package/core-kit/hooks/trading/withdraw-v2/init-step/use-fetch-init-withdraw-aave-swap-data.d.ts +5 -0
  136. package/core-kit/hooks/trading/withdraw-v2/init-step/use-fetch-init-withdraw-complex-asset-data.d.ts +6 -0
  137. package/core-kit/hooks/trading/withdraw-v2/init-step/use-get-init-withdraw-transaction-arguments.d.ts +10 -0
  138. package/core-kit/hooks/trading/withdraw-v2/init-step/use-init-withdraw-allowance.d.ts +4 -0
  139. package/core-kit/hooks/trading/withdraw-v2/init-step/use-init-withdraw-estimated-receive-assets.d.ts +210 -0
  140. package/core-kit/hooks/trading/withdraw-v2/init-step/use-init-withdraw-quote.d.ts +1 -0
  141. package/core-kit/hooks/trading/withdraw-v2/init-step/use-init-withdraw-transaction.d.ts +6 -0
  142. package/core-kit/hooks/trading/withdraw-v2/init-step/use-is-multi-asset-withdraw.d.ts +1 -0
  143. package/core-kit/hooks/trading/withdraw-v2/init-step/use-is-offchain-aave-withdraw-supported.d.ts +1 -0
  144. package/core-kit/hooks/trading/withdraw-v2/init-step/use-is-unroll-and-claim-transaction.d.ts +1 -0
  145. package/core-kit/hooks/trading/withdraw-v2/use-applied-withdraw-slippage.d.ts +1 -0
  146. package/core-kit/hooks/trading/withdraw-v2/use-min-withdraw-slippage.d.ts +1 -0
  147. package/core-kit/hooks/trading/withdraw-v2/use-withdraw-assets-info.d.ts +219 -0
  148. package/core-kit/hooks/trading/withdraw-v2/use-withdraw-type-handler.d.ts +1 -0
  149. package/core-kit/hooks/trading/withdraw-v2/use-withdrawal-vault-address.d.ts +1042 -0
  150. package/core-kit/hooks/user/index.d.ts +4 -0
  151. package/core-kit/hooks/user/multicall/use-user-multicall.d.ts +1113 -0
  152. package/core-kit/hooks/user/use-flatmoney-points-user-balances.d.ts +10 -0
  153. package/core-kit/hooks/user/use-is-dhedge-vault-connected.d.ts +1 -0
  154. package/core-kit/hooks/user/use-is-insufficient-balance.d.ts +1 -0
  155. package/core-kit/hooks/user/use-user-token-balance.d.ts +8 -0
  156. package/core-kit/hooks/utils/index.d.ts +2 -0
  157. package/core-kit/hooks/utils/use-browser-storage.d.ts +1 -0
  158. package/core-kit/hooks/utils/use-debounce.d.ts +1 -0
  159. package/core-kit/hooks/web3/index.d.ts +13 -0
  160. package/core-kit/hooks/web3/use-account.d.ts +7 -0
  161. package/core-kit/hooks/web3/use-balance.d.ts +2 -0
  162. package/core-kit/hooks/web3/use-contract-function.d.ts +17 -0
  163. package/core-kit/hooks/web3/use-contract-read-error-logging.d.ts +6 -0
  164. package/core-kit/hooks/web3/use-contract-reads-error-logging.d.ts +5 -0
  165. package/core-kit/hooks/web3/use-gas-price.d.ts +2 -0
  166. package/core-kit/hooks/web3/use-invalidate-on-block.d.ts +6 -0
  167. package/core-kit/hooks/web3/use-invalidate-trading-queries.d.ts +4 -0
  168. package/core-kit/hooks/web3/use-is-wallet-connected.d.ts +1 -0
  169. package/core-kit/hooks/web3/use-network.d.ts +13 -0
  170. package/core-kit/hooks/web3/use-static-call-query.d.ts +13 -0
  171. package/core-kit/hooks/web3/use-token-allowance.d.ts +9 -0
  172. package/core-kit/index.d.ts +1 -0
  173. package/core-kit/models/estimation-error.d.ts +20 -0
  174. package/core-kit/models/index.d.ts +1 -0
  175. package/core-kit/providers/index.d.ts +6 -0
  176. package/core-kit/types/config.types.d.ts +33 -0
  177. package/core-kit/types/contract.types.d.ts +28 -0
  178. package/core-kit/types/index.d.ts +10 -0
  179. package/core-kit/types/pool.types.d.ts +17 -0
  180. package/core-kit/types/react-query.types.d.ts +11 -0
  181. package/core-kit/types/referral.types.d.ts +12 -0
  182. package/core-kit/types/state.types.d.ts +109 -0
  183. package/core-kit/types/synthetix-v3.types.d.ts +15 -0
  184. package/core-kit/types/trading-panel.types.d.ts +43 -0
  185. package/core-kit/types/trading.types.d.ts +32 -0
  186. package/core-kit/types/web3.types.d.ts +34 -0
  187. package/core-kit/utils/common.d.ts +4 -0
  188. package/core-kit/utils/error.d.ts +17 -0
  189. package/core-kit/utils/flat-money.d.ts +9 -0
  190. package/core-kit/utils/formatter.d.ts +17 -0
  191. package/core-kit/utils/index.d.ts +12 -0
  192. package/core-kit/utils/logger.d.ts +17 -0
  193. package/core-kit/utils/number.d.ts +8 -0
  194. package/core-kit/utils/synthetix-v3/eip-7412.d.ts +21 -0
  195. package/core-kit/utils/synthetix-v3/parse-error.d.ts +3 -0
  196. package/core-kit/utils/synthetix-v3/pyth-adapter.d.ts +13 -0
  197. package/core-kit/utils/synthetix.d.ts +2 -0
  198. package/core-kit/utils/token.d.ts +8 -0
  199. package/core-kit/utils/transaction.d.ts +39 -0
  200. package/core-kit/utils/ua.d.ts +1 -0
  201. package/core-kit/utils/url.d.ts +3 -0
  202. package/core-kit/utils/web3.d.ts +9 -0
  203. package/index-22789f33.cjs +217 -0
  204. package/index-5567d59f.js +42941 -0
  205. package/index.cjs +1 -0
  206. package/index.d.ts +18 -0
  207. package/index.js +242 -0
  208. package/limit-orders/component/common/action-button.d.ts +10 -0
  209. package/limit-orders/component/common/modal-content.d.ts +8 -0
  210. package/limit-orders/component/common/modal-dialog.d.ts +9 -0
  211. package/limit-orders/component/common/price-input.d.ts +20 -0
  212. package/limit-orders/component/input-group/input-group.d.ts +2 -0
  213. package/limit-orders/component/input-group/input-group.hooks.d.ts +15 -0
  214. package/limit-orders/component/limit-order-button/limit-order-approve-button.d.ts +2 -0
  215. package/limit-orders/component/limit-order-button/limit-order-approve-button.hooks.d.ts +5 -0
  216. package/limit-orders/component/limit-order-button/limit-order-button.d.ts +2 -0
  217. package/limit-orders/component/limit-order-button/limit-order-button.hooks.d.ts +9 -0
  218. package/limit-orders/component/limit-order-button/network-check-button.d.ts +2 -0
  219. package/limit-orders/component/limit-order-button/network-check-button.hooks.d.ts +4 -0
  220. package/limit-orders/component/limit-order-modal.d.ts +13 -0
  221. package/limit-orders/component/limit-order-modal.hooks.d.ts +6 -0
  222. package/limit-orders/constants.d.ts +1 -0
  223. package/limit-orders/hooks/state.d.ts +2 -0
  224. package/limit-orders/hooks/use-invalidate-limit-order-query.d.ts +1 -0
  225. package/limit-orders/hooks/use-is-limit-order-approved.d.ts +1 -0
  226. package/limit-orders/hooks/use-limit-order-approve-transaction.d.ts +4 -0
  227. package/limit-orders/hooks/use-listen-limit-order-execution.d.ts +1 -0
  228. package/limit-orders/hooks/use-on-limit-order-settled.d.ts +2 -0
  229. package/limit-orders/hooks/use-user-limit-order.d.ts +753 -0
  230. package/limit-orders/index.d.ts +2 -0
  231. package/limit-orders/providers/state-provider/reducer.d.ts +7 -0
  232. package/limit-orders/providers/state-provider/state-provider.d.ts +6 -0
  233. package/limit-orders/providers/state-provider/state-provider.types.d.ts +51 -0
  234. package/limit-orders/providers/theme-provider/index.d.ts +2 -0
  235. package/limit-orders/providers/theme-provider/theme-provider.d.ts +3 -0
  236. package/limit-orders/providers/theme-provider/theme-provider.types.d.ts +132 -0
  237. package/limit-orders/providers/translation-provider/index.d.ts +3 -0
  238. package/limit-orders/providers/translation-provider/translation-provider.d.ts +4 -0
  239. package/limit-orders/providers/translation-provider/translation-provider.defaults.d.ts +2 -0
  240. package/limit-orders/providers/translation-provider/translation-provider.hooks.d.ts +1 -0
  241. package/limit-orders/providers/translation-provider/translation-provider.types.d.ts +15 -0
  242. package/limit-orders/utils.d.ts +25 -0
  243. package/package.json +4 -20
  244. package/pyth-adapter-7336cdaa.js +5705 -0
  245. package/pyth-adapter-cc16310a.cjs +11 -0
  246. package/style.css +1 -0
  247. package/theme/colors.d.ts +49 -0
  248. package/trading-widget/components/common/alert/alert.d.ts +6 -0
  249. package/trading-widget/components/common/badge/token-badge/token-badge.d.ts +13 -0
  250. package/trading-widget/components/common/balance/balance.d.ts +7 -0
  251. package/trading-widget/components/common/balance/withdraw-assets-composition-table.d.ts +7 -0
  252. package/trading-widget/components/common/button/action-button/action-button.d.ts +10 -0
  253. package/trading-widget/components/common/button/disabled-button-with-prompt/disabled-button-with-prompt.d.ts +6 -0
  254. package/trading-widget/components/common/button/external-link-button/external-link-button.d.ts +9 -0
  255. package/trading-widget/components/common/button/icon-button/icon-button.d.ts +10 -0
  256. package/trading-widget/components/common/button/max-balance-button/max-balance-button.d.ts +6 -0
  257. package/trading-widget/components/common/button/reload-button/reload-button.d.ts +3 -0
  258. package/trading-widget/components/common/button/reload-button/reload-button.hooks.d.ts +10 -0
  259. package/trading-widget/components/common/icon/token-icon/token-icon.d.ts +14 -0
  260. package/trading-widget/components/common/index.d.ts +21 -0
  261. package/trading-widget/components/common/layout/balance/balance.d.ts +2 -0
  262. package/trading-widget/components/common/layout/index.d.ts +18 -0
  263. package/trading-widget/components/common/layout/input-group/input-group.d.ts +2 -0
  264. package/trading-widget/components/common/layout/meta/meta.d.ts +2 -0
  265. package/trading-widget/components/common/layout/notification/notification.d.ts +6 -0
  266. package/trading-widget/components/common/layout/overlay/overlay.d.ts +9 -0
  267. package/trading-widget/components/common/layout/panel/panel.d.ts +2 -0
  268. package/trading-widget/components/common/layout/settings/settings-popover/settings-popover.d.ts +8 -0
  269. package/trading-widget/components/common/layout/settings/settings.d.ts +2 -0
  270. package/trading-widget/components/common/meta/assets-composition-disclosure/assets-composition-disclosure.d.ts +3 -0
  271. package/trading-widget/components/common/meta/transaction-disclosure/transaction-disclosure-item/transaction-disclosure-item.d.ts +12 -0
  272. package/trading-widget/components/common/meta/transaction-disclosure/transaction-disclosure.d.ts +11 -0
  273. package/trading-widget/components/common/overlay/pending-overlay/pending-overlay.d.ts +7 -0
  274. package/trading-widget/components/common/settings/settings-option/settings-option.d.ts +7 -0
  275. package/trading-widget/components/common/skeleton/skeleton.d.ts +8 -0
  276. package/trading-widget/components/common/spinner/spinner.d.ts +6 -0
  277. package/trading-widget/components/common/switch/switch.d.ts +10 -0
  278. package/trading-widget/components/common/tab/tab-button/tab-button.d.ts +7 -0
  279. package/trading-widget/components/common/tooltip/info-tooltip/info-tooltip.d.ts +6 -0
  280. package/trading-widget/components/common/tooltip/tooltip-icon/tooltip-icon.d.ts +7 -0
  281. package/trading-widget/components/common/tooltip/tooltip-wrapper/tooltip-wrapper.d.ts +7 -0
  282. package/trading-widget/components/default-examples/image/image.d.ts +3 -0
  283. package/trading-widget/components/deposit/balance/balance.d.ts +2 -0
  284. package/trading-widget/components/deposit/balance/balance.hooks.d.ts +4 -0
  285. package/trading-widget/components/deposit/button/trade-button/trade-button.d.ts +2 -0
  286. package/trading-widget/components/deposit/button/trade-button/trade-button.hooks.d.ts +6 -0
  287. package/trading-widget/components/deposit/button/valid-deposit-button/valid-deposit-button.d.ts +2 -0
  288. package/trading-widget/components/deposit/button/valid-deposit-button/valid-deposit-button.hooks.d.ts +18 -0
  289. package/trading-widget/components/deposit/index.d.ts +2 -0
  290. package/trading-widget/components/deposit/input-group/input-group.d.ts +1 -0
  291. package/trading-widget/components/deposit/input-group/input-group.hooks.d.ts +25 -0
  292. package/trading-widget/components/deposit/meta/meta.d.ts +2 -0
  293. package/trading-widget/components/deposit/meta/transaction-disclosure/transaction-disclosure.d.ts +1 -0
  294. package/trading-widget/components/deposit/meta/transaction-disclosure/transaction-disclosure.hooks.d.ts +13 -0
  295. package/trading-widget/components/deposit/settings/deposit-settings/deposit-settings.d.ts +2 -0
  296. package/trading-widget/components/deposit/tab-panel/tab-panel.d.ts +3 -0
  297. package/trading-widget/components/deposit/tab-panel/tab-panel.hooks.d.ts +1 -0
  298. package/trading-widget/components/index.d.ts +3 -0
  299. package/trading-widget/components/widget/widget-buttons/approve-button/approve-button.d.ts +3 -0
  300. package/trading-widget/components/widget/widget-buttons/approve-button/approve-button.hooks.d.ts +8 -0
  301. package/trading-widget/components/widget/widget-buttons/connect-wallet-button/connect-wallet-button.d.ts +2 -0
  302. package/trading-widget/components/widget/widget-buttons/index.d.ts +4 -0
  303. package/trading-widget/components/widget/widget-buttons/reload-swap-quote-button/reload-deposit-swap-quote-button/reload-deposit-swap-quote-button.d.ts +2 -0
  304. package/trading-widget/components/widget/widget-buttons/reload-swap-quote-button/reload-deposit-swap-quote-button/reload-deposit-swap-quote-button.hooks.d.ts +6 -0
  305. package/trading-widget/components/widget/widget-buttons/reload-swap-quote-button/reload-swap-quote-button.d.ts +2 -0
  306. package/trading-widget/components/widget/widget-buttons/reload-swap-quote-button/reload-withdraw-swap-quote-button/reload-withdraw-swap-quote-button.d.ts +2 -0
  307. package/trading-widget/components/widget/widget-buttons/reload-swap-quote-button/reload-withdraw-swap-quote-button/reload-withdraw-swap-quote-button.hooks.d.ts +6 -0
  308. package/trading-widget/components/widget/widget-buttons/switch-network-button/switch-network-button.d.ts +1 -0
  309. package/trading-widget/components/widget/widget-buttons/valid-network-button/valid-network-button.d.ts +2 -0
  310. package/trading-widget/components/widget/widget-buttons/valid-network-button/valid-network-button.hooks.d.ts +4 -0
  311. package/trading-widget/components/widget/widget-input/all-assets-composition-table/all-assets-composition-table.d.ts +2 -0
  312. package/trading-widget/components/widget/widget-input/all-assets-composition-table/all-assets-composition-table.hooks.d.ts +15 -0
  313. package/trading-widget/components/widget/widget-input/all-assets-composition-table/withdraw-explanation-tip.d.ts +4 -0
  314. package/trading-widget/components/widget/widget-input/index.d.ts +1 -0
  315. package/trading-widget/components/widget/widget-input/token-selector/token-selector.d.ts +3 -0
  316. package/trading-widget/components/widget/widget-input/token-selector/token-selector.hooks.d.ts +9 -0
  317. package/trading-widget/components/widget/widget-input/widget-input.d.ts +3 -0
  318. package/trading-widget/components/widget/widget-input/widget-input.hooks.d.ts +27 -0
  319. package/trading-widget/components/widget/widget-input/widget-input.utils.d.ts +3 -0
  320. package/trading-widget/components/widget/widget-meta/exchange-rate/exchange-rate.d.ts +6 -0
  321. package/trading-widget/components/widget/widget-meta/index.d.ts +1 -0
  322. package/trading-widget/components/widget/widget-overlay/fmp-withdrawal-overlay/fmp-withdrawal-overlay.d.ts +3 -0
  323. package/trading-widget/components/widget/widget-overlay/fmp-withdrawal-overlay/fmp-withdrawal-overlay.hooks.d.ts +10 -0
  324. package/trading-widget/components/widget/widget-overlay/high-slippage-overlay/high-slippage-overlay.d.ts +3 -0
  325. package/trading-widget/components/widget/widget-overlay/index.d.ts +8 -0
  326. package/trading-widget/components/widget/widget-overlay/notification-overlay/notification-overlay.d.ts +3 -0
  327. package/trading-widget/components/widget/widget-overlay/notification-overlay/notification-overlay.hooks.d.ts +8 -0
  328. package/trading-widget/components/widget/widget-overlay/overlay-switch/overlay-switch.d.ts +2 -0
  329. package/trading-widget/components/widget/widget-overlay/pool-select-overlay/network-header/network-header.d.ts +7 -0
  330. package/trading-widget/components/widget/widget-overlay/pool-select-overlay/pool-select-overlay.d.ts +3 -0
  331. package/trading-widget/components/widget/widget-overlay/pool-select-overlay/pool-select-overlay.hooks.d.ts +31 -0
  332. package/trading-widget/components/widget/widget-overlay/terms-of-use-overlay/terms-of-use-overlay.d.ts +3 -0
  333. package/trading-widget/components/widget/widget-overlay/token-select-overlay/multi-token-select-item/multi-token-select-item.d.ts +2 -0
  334. package/trading-widget/components/widget/widget-overlay/token-select-overlay/multi-token-select-item/multi-token-select-item.hooks.d.ts +8 -0
  335. package/trading-widget/components/widget/widget-overlay/token-select-overlay/token-select-item/token-select-item.d.ts +2 -0
  336. package/trading-widget/components/widget/widget-overlay/token-select-overlay/token-select-item/token-select-item.hooks.d.ts +11 -0
  337. package/trading-widget/components/widget/widget-overlay/token-select-overlay/token-select-overlay.d.ts +3 -0
  338. package/trading-widget/components/widget/widget-overlay/token-select-overlay/token-select-overlay.hooks.d.ts +12 -0
  339. package/trading-widget/components/widget/widget-overlay/trading-overlay/trading-overlay.d.ts +3 -0
  340. package/trading-widget/components/widget/widget-overlay/trading-overlay/trading-overlay.hooks.d.ts +10 -0
  341. package/trading-widget/components/widget/widget-overlay/trading-overlay/trading-summary/approve-summary.d.ts +7 -0
  342. package/trading-widget/components/widget/widget-overlay/trading-overlay/trading-summary/oracles-update-summary.d.ts +2 -0
  343. package/trading-widget/components/widget/widget-overlay/trading-overlay/trading-summary/swap-summary.d.ts +7 -0
  344. package/trading-widget/components/widget/widget-overlay/trading-overlay/trading-summary/trading-summary.d.ts +2 -0
  345. package/trading-widget/components/widget/widget-overlay/trading-overlay/trading-summary/vault-transaction-summary.d.ts +3 -0
  346. package/trading-widget/components/widget/widget-settings/index.d.ts +2 -0
  347. package/trading-widget/components/widget/widget-settings/slippage-selector/slippage-selector.d.ts +2 -0
  348. package/trading-widget/components/widget/widget-settings/slippage-selector/slippage-selector.hooks.d.ts +15 -0
  349. package/trading-widget/components/widget/widget-settings/token-allowance-switch/token-allowance-switch.d.ts +1 -0
  350. package/trading-widget/components/widget/widget-settings/widget-settings.d.ts +7 -0
  351. package/trading-widget/components/widget/widget-tabs/widget-tabs.d.ts +2 -0
  352. package/trading-widget/components/widget/widget.d.ts +2 -0
  353. package/trading-widget/components/widget/widget.hooks.d.ts +5 -0
  354. package/trading-widget/components/withdraw/complete-step/balance/complete-withdraw-balance.d.ts +2 -0
  355. package/trading-widget/components/withdraw/complete-step/balance/complete-withdraw-balance.hooks.d.ts +12 -0
  356. package/trading-widget/components/withdraw/complete-step/button/claim-button/claim-button.d.ts +3 -0
  357. package/trading-widget/components/withdraw/complete-step/button/claim-button/claim-button.hooks.d.ts +7 -0
  358. package/trading-widget/components/withdraw/complete-step/button/swap-button/swap-button.d.ts +2 -0
  359. package/trading-widget/components/withdraw/complete-step/button/swap-button/swap-button.hooks.d.ts +6 -0
  360. package/trading-widget/components/withdraw/complete-step/button/valid-swap-button/valid-swap-button.d.ts +2 -0
  361. package/trading-widget/components/withdraw/complete-step/button/valid-swap-button/valid-swap-button.hooks.d.ts +5 -0
  362. package/trading-widget/components/withdraw/complete-step/complete-step.d.ts +2 -0
  363. package/trading-widget/components/withdraw/complete-step/complete-step.hooks.d.ts +3 -0
  364. package/trading-widget/components/withdraw/complete-step/input-group/complete-withdraw-input-group.d.ts +2 -0
  365. package/trading-widget/components/withdraw/complete-step/input-group/complete-withdraw-input-group.hooks.d.ts +12 -0
  366. package/trading-widget/components/withdraw/complete-step/meta/meta.d.ts +2 -0
  367. package/trading-widget/components/withdraw/complete-step/meta/transaction-disclosure/transaction-disclosure.d.ts +1 -0
  368. package/trading-widget/components/withdraw/complete-step/meta/transaction-disclosure/transaction-disclosure.hooks.d.ts +6 -0
  369. package/trading-widget/components/withdraw/index.d.ts +2 -0
  370. package/trading-widget/components/withdraw/init-step/balance/init-withdraw-balance.d.ts +2 -0
  371. package/trading-widget/components/withdraw/init-step/balance/init-withdraw-balance.hooks.d.ts +4 -0
  372. package/trading-widget/components/withdraw/init-step/button/init-withdraw-button/init-withdraw-button.d.ts +2 -0
  373. package/trading-widget/components/withdraw/init-step/button/init-withdraw-button/init-withdraw-button.hooks.d.ts +6 -0
  374. package/trading-widget/components/withdraw/init-step/button/valid-init-withdraw-button/valid-init-withdraw-button.d.ts +2 -0
  375. package/trading-widget/components/withdraw/init-step/button/valid-init-withdraw-button/valid-init-withdraw-button.hooks.d.ts +21 -0
  376. package/trading-widget/components/withdraw/init-step/init-step.d.ts +1 -0
  377. package/trading-widget/components/withdraw/init-step/input-group/init-withdraw-input-group.d.ts +1 -0
  378. package/trading-widget/components/withdraw/init-step/input-group/init-withdraw-input-group.hooks.d.ts +22 -0
  379. package/trading-widget/components/withdraw/init-step/meta/meta.d.ts +2 -0
  380. package/trading-widget/components/withdraw/init-step/meta/transaction-disclosure/transaction-disclosure.d.ts +1 -0
  381. package/trading-widget/components/withdraw/init-step/meta/transaction-disclosure/transaction-disclosure.hooks.d.ts +9 -0
  382. package/trading-widget/components/withdraw/settings/withdraw-settings/withdraw-settings.d.ts +2 -0
  383. package/trading-widget/components/withdraw/stepper/withdraw-stepper.d.ts +2 -0
  384. package/trading-widget/components/withdraw/stepper/withdraw-stepper.hooks.d.ts +8 -0
  385. package/trading-widget/components/withdraw/tab-panel/tab-panel.d.ts +2 -0
  386. package/trading-widget/components/withdraw/tab-panel/tab-panel.hooks.d.ts +3 -0
  387. package/trading-widget/constants/synthetix-v3.d.ts +2 -0
  388. package/trading-widget/constants/tab.d.ts +1 -0
  389. package/trading-widget/hooks/index.d.ts +7 -0
  390. package/trading-widget/hooks/use-crypto-icon.d.ts +3 -0
  391. package/trading-widget/hooks/use-get-slippage-placeholder.d.ts +6 -0
  392. package/trading-widget/hooks/use-get-theme-type-by-slippage.d.ts +2 -0
  393. package/trading-widget/hooks/use-high-slippage-check.d.ts +5 -0
  394. package/trading-widget/hooks/use-leveraged-flat-money-withdrawal-checks.d.ts +4 -0
  395. package/trading-widget/hooks/use-synthetix-withdrawal-window.d.ts +4 -0
  396. package/trading-widget/hooks/use-trading-type-name.d.ts +2 -0
  397. package/trading-widget/hooks/use-user-staked-pools.d.ts +5 -0
  398. package/trading-widget/hooks/use-user-vault-balance.d.ts +3 -0
  399. package/trading-widget/hooks/use-user-vaults-balances.d.ts +2 -0
  400. package/trading-widget/providers/component-provider/component-provider.d.ts +14 -0
  401. package/trading-widget/providers/component-provider/component-provider.defaults.d.ts +2 -0
  402. package/trading-widget/providers/component-provider/component-provider.hooks.d.ts +11 -0
  403. package/trading-widget/providers/component-provider/component-provider.types.d.ts +31 -0
  404. package/trading-widget/providers/component-provider/index.d.ts +3 -0
  405. package/trading-widget/providers/config-provider/config-provider.d.ts +4 -0
  406. package/trading-widget/providers/config-provider/config-provider.defaults.d.ts +3 -0
  407. package/trading-widget/providers/config-provider/config-provider.hooks.d.ts +3 -0
  408. package/trading-widget/providers/config-provider/config-provider.types.d.ts +39 -0
  409. package/trading-widget/providers/config-provider/index.d.ts +4 -0
  410. package/trading-widget/providers/index.d.ts +12 -0
  411. package/trading-widget/providers/overlay-provider/index.d.ts +2 -0
  412. package/trading-widget/providers/overlay-provider/overlay-provider.d.ts +2 -0
  413. package/trading-widget/providers/overlay-provider/overlay-provider.hooks.d.ts +16 -0
  414. package/trading-widget/providers/overlay-provider/overlay-provider.types.d.ts +16 -0
  415. package/trading-widget/providers/theme-provider/index.d.ts +2 -0
  416. package/trading-widget/providers/theme-provider/theme-provider.d.ts +3 -0
  417. package/trading-widget/providers/theme-provider/theme-provider.types.d.ts +225 -0
  418. package/trading-widget/providers/translation-provider/index.d.ts +3 -0
  419. package/trading-widget/providers/translation-provider/translation-provider.d.ts +4 -0
  420. package/trading-widget/providers/translation-provider/translation-provider.defaults.d.ts +2 -0
  421. package/trading-widget/providers/translation-provider/translation-provider.hooks.d.ts +1 -0
  422. package/trading-widget/providers/translation-provider/translation-provider.types.d.ts +104 -0
  423. package/trading-widget/types/balance.types.d.ts +9 -0
  424. package/trading-widget/types/index.d.ts +5 -0
  425. package/trading-widget/types/overlay.types.d.ts +13 -0
  426. package/trading-widget/types/staking.types.d.ts +6 -0
  427. package/trading-widget/types/synthetix-v3.types.d.ts +24 -0
  428. package/trading-widget/types/theme.types.d.ts +9 -0
  429. package/trading-widget/utils/format.d.ts +6 -0
  430. package/trading-widget/utils/icon.d.ts +2 -0
  431. package/trading-widget/utils/synthetix-v3.d.ts +39 -0
@@ -0,0 +1,1096 @@
1
+ import type { UseReadContractsReturnType } from 'wagmi';
2
+ import type { Address, DynamicPoolContractData, PoolContractAccountCallParams } from 'core-kit/types';
3
+ declare const getPoolContracts: ({ account, chainId, address, }: PoolContractAccountCallParams) => readonly [{
4
+ readonly address: `0x${string}`;
5
+ readonly abi: readonly [{
6
+ readonly inputs: readonly [{
7
+ readonly internalType: "address";
8
+ readonly name: "owner";
9
+ readonly type: "address";
10
+ }, {
11
+ readonly internalType: "address";
12
+ readonly name: "spender";
13
+ readonly type: "address";
14
+ }];
15
+ readonly name: "allowance";
16
+ readonly outputs: readonly [{
17
+ readonly internalType: "uint256";
18
+ readonly name: "";
19
+ readonly type: "uint256";
20
+ }];
21
+ readonly stateMutability: "view";
22
+ readonly type: "function";
23
+ }, {
24
+ readonly inputs: readonly [{
25
+ readonly internalType: "address";
26
+ readonly name: "spender";
27
+ readonly type: "address";
28
+ }, {
29
+ readonly internalType: "uint256";
30
+ readonly name: "amount";
31
+ readonly type: "uint256";
32
+ }];
33
+ readonly name: "approve";
34
+ readonly outputs: readonly [{
35
+ readonly internalType: "bool";
36
+ readonly name: "";
37
+ readonly type: "bool";
38
+ }];
39
+ readonly stateMutability: "nonpayable";
40
+ readonly type: "function";
41
+ }, {
42
+ readonly inputs: readonly [{
43
+ readonly internalType: "address";
44
+ readonly name: "account";
45
+ readonly type: "address";
46
+ }];
47
+ readonly name: "balanceOf";
48
+ readonly outputs: readonly [{
49
+ readonly internalType: "uint256";
50
+ readonly name: "";
51
+ readonly type: "uint256";
52
+ }];
53
+ readonly stateMutability: "view";
54
+ readonly type: "function";
55
+ }, {
56
+ readonly inputs: readonly [{
57
+ readonly internalType: "uint256";
58
+ readonly name: "fundValue";
59
+ readonly type: "uint256";
60
+ }];
61
+ readonly name: "calculateAvailableManagerFee";
62
+ readonly outputs: readonly [{
63
+ readonly internalType: "uint256";
64
+ readonly name: "fee";
65
+ readonly type: "uint256";
66
+ }];
67
+ readonly stateMutability: "view";
68
+ readonly type: "function";
69
+ }, {
70
+ readonly inputs: readonly [];
71
+ readonly name: "decimals";
72
+ readonly outputs: readonly [{
73
+ readonly internalType: "uint8";
74
+ readonly name: "";
75
+ readonly type: "uint8";
76
+ }];
77
+ readonly stateMutability: "view";
78
+ readonly type: "function";
79
+ }, {
80
+ readonly inputs: readonly [{
81
+ readonly internalType: "address";
82
+ readonly name: "_asset";
83
+ readonly type: "address";
84
+ }, {
85
+ readonly internalType: "uint256";
86
+ readonly name: "_amount";
87
+ readonly type: "uint256";
88
+ }];
89
+ readonly name: "deposit";
90
+ readonly outputs: readonly [{
91
+ readonly internalType: "uint256";
92
+ readonly name: "liquidityMinted";
93
+ readonly type: "uint256";
94
+ }];
95
+ readonly stateMutability: "nonpayable";
96
+ readonly type: "function";
97
+ }, {
98
+ readonly inputs: readonly [{
99
+ readonly internalType: "address";
100
+ readonly name: "sender";
101
+ readonly type: "address";
102
+ }];
103
+ readonly name: "getExitRemainingCooldown";
104
+ readonly outputs: readonly [{
105
+ readonly internalType: "uint256";
106
+ readonly name: "remaining";
107
+ readonly type: "uint256";
108
+ }];
109
+ readonly stateMutability: "view";
110
+ readonly type: "function";
111
+ }, {
112
+ readonly inputs: readonly [];
113
+ readonly name: "getFundSummary";
114
+ readonly outputs: readonly [{
115
+ readonly components: readonly [{
116
+ readonly internalType: "string";
117
+ readonly name: "name";
118
+ readonly type: "string";
119
+ }, {
120
+ readonly internalType: "uint256";
121
+ readonly name: "totalSupply";
122
+ readonly type: "uint256";
123
+ }, {
124
+ readonly internalType: "uint256";
125
+ readonly name: "totalFundValue";
126
+ readonly type: "uint256";
127
+ }, {
128
+ readonly internalType: "address";
129
+ readonly name: "manager";
130
+ readonly type: "address";
131
+ }, {
132
+ readonly internalType: "string";
133
+ readonly name: "managerName";
134
+ readonly type: "string";
135
+ }, {
136
+ readonly internalType: "uint256";
137
+ readonly name: "creationTime";
138
+ readonly type: "uint256";
139
+ }, {
140
+ readonly internalType: "bool";
141
+ readonly name: "privatePool";
142
+ readonly type: "bool";
143
+ }, {
144
+ readonly internalType: "uint256";
145
+ readonly name: "performanceFeeNumerator";
146
+ readonly type: "uint256";
147
+ }, {
148
+ readonly internalType: "uint256";
149
+ readonly name: "managerFeeNumerator";
150
+ readonly type: "uint256";
151
+ }, {
152
+ readonly internalType: "uint256";
153
+ readonly name: "managerFeeDenominator";
154
+ readonly type: "uint256";
155
+ }, {
156
+ readonly internalType: "uint256";
157
+ readonly name: "exitFeeNumerator";
158
+ readonly type: "uint256";
159
+ }, {
160
+ readonly internalType: "uint256";
161
+ readonly name: "exitFeeDenominator";
162
+ readonly type: "uint256";
163
+ }, {
164
+ readonly internalType: "uint256";
165
+ readonly name: "entryFeeNumerator";
166
+ readonly type: "uint256";
167
+ }];
168
+ readonly internalType: "struct PoolLogic.FundSummary";
169
+ readonly name: "";
170
+ readonly type: "tuple";
171
+ }];
172
+ readonly stateMutability: "view";
173
+ readonly type: "function";
174
+ }, {
175
+ readonly inputs: readonly [];
176
+ readonly name: "mintManagerFee";
177
+ readonly outputs: readonly [];
178
+ readonly stateMutability: "nonpayable";
179
+ readonly type: "function";
180
+ }, {
181
+ readonly inputs: readonly [];
182
+ readonly name: "name";
183
+ readonly outputs: readonly [{
184
+ readonly internalType: "string";
185
+ readonly name: "";
186
+ readonly type: "string";
187
+ }];
188
+ readonly stateMutability: "view";
189
+ readonly type: "function";
190
+ }, {
191
+ readonly inputs: readonly [];
192
+ readonly name: "poolManagerLogic";
193
+ readonly outputs: readonly [{
194
+ readonly internalType: "address";
195
+ readonly name: "";
196
+ readonly type: "address";
197
+ }];
198
+ readonly stateMutability: "view";
199
+ readonly type: "function";
200
+ }, {
201
+ readonly inputs: readonly [];
202
+ readonly name: "symbol";
203
+ readonly outputs: readonly [{
204
+ readonly internalType: "string";
205
+ readonly name: "";
206
+ readonly type: "string";
207
+ }];
208
+ readonly stateMutability: "view";
209
+ readonly type: "function";
210
+ }, {
211
+ readonly inputs: readonly [];
212
+ readonly name: "tokenPrice";
213
+ readonly outputs: readonly [{
214
+ readonly internalType: "uint256";
215
+ readonly name: "price";
216
+ readonly type: "uint256";
217
+ }];
218
+ readonly stateMutability: "view";
219
+ readonly type: "function";
220
+ }, {
221
+ readonly inputs: readonly [];
222
+ readonly name: "totalSupply";
223
+ readonly outputs: readonly [{
224
+ readonly internalType: "uint256";
225
+ readonly name: "";
226
+ readonly type: "uint256";
227
+ }];
228
+ readonly stateMutability: "view";
229
+ readonly type: "function";
230
+ }, {
231
+ readonly inputs: readonly [{
232
+ readonly internalType: "uint256";
233
+ readonly name: "_fundTokenAmount";
234
+ readonly type: "uint256";
235
+ }, {
236
+ readonly components: readonly [{
237
+ readonly internalType: "address";
238
+ readonly name: "supportedAsset";
239
+ readonly type: "address";
240
+ }, {
241
+ readonly internalType: "bytes";
242
+ readonly name: "withdrawData";
243
+ readonly type: "bytes";
244
+ }, {
245
+ readonly internalType: "uint256";
246
+ readonly name: "slippageTolerance";
247
+ readonly type: "uint256";
248
+ }];
249
+ readonly internalType: "struct IPoolLogic.ComplexAsset[]";
250
+ readonly name: "_complexAssetsData";
251
+ readonly type: "tuple[]";
252
+ }];
253
+ readonly name: "withdrawSafe";
254
+ readonly outputs: readonly [];
255
+ readonly stateMutability: "nonpayable";
256
+ readonly type: "function";
257
+ }, {
258
+ readonly inputs: readonly [{
259
+ readonly internalType: "uint256";
260
+ readonly name: "_fundTokenAmount";
261
+ readonly type: "uint256";
262
+ }, {
263
+ readonly internalType: "uint256";
264
+ readonly name: "_slippageTolerance";
265
+ readonly type: "uint256";
266
+ }];
267
+ readonly name: "withdrawSafe";
268
+ readonly outputs: readonly [];
269
+ readonly stateMutability: "nonpayable";
270
+ readonly type: "function";
271
+ }];
272
+ readonly functionName: "balanceOf";
273
+ readonly chainId: number;
274
+ readonly args: readonly [`0x${string}`];
275
+ }, {
276
+ readonly address: `0x${string}`;
277
+ readonly abi: readonly [{
278
+ readonly inputs: readonly [{
279
+ readonly internalType: "address";
280
+ readonly name: "owner";
281
+ readonly type: "address";
282
+ }, {
283
+ readonly internalType: "address";
284
+ readonly name: "spender";
285
+ readonly type: "address";
286
+ }];
287
+ readonly name: "allowance";
288
+ readonly outputs: readonly [{
289
+ readonly internalType: "uint256";
290
+ readonly name: "";
291
+ readonly type: "uint256";
292
+ }];
293
+ readonly stateMutability: "view";
294
+ readonly type: "function";
295
+ }, {
296
+ readonly inputs: readonly [{
297
+ readonly internalType: "address";
298
+ readonly name: "spender";
299
+ readonly type: "address";
300
+ }, {
301
+ readonly internalType: "uint256";
302
+ readonly name: "amount";
303
+ readonly type: "uint256";
304
+ }];
305
+ readonly name: "approve";
306
+ readonly outputs: readonly [{
307
+ readonly internalType: "bool";
308
+ readonly name: "";
309
+ readonly type: "bool";
310
+ }];
311
+ readonly stateMutability: "nonpayable";
312
+ readonly type: "function";
313
+ }, {
314
+ readonly inputs: readonly [{
315
+ readonly internalType: "address";
316
+ readonly name: "account";
317
+ readonly type: "address";
318
+ }];
319
+ readonly name: "balanceOf";
320
+ readonly outputs: readonly [{
321
+ readonly internalType: "uint256";
322
+ readonly name: "";
323
+ readonly type: "uint256";
324
+ }];
325
+ readonly stateMutability: "view";
326
+ readonly type: "function";
327
+ }, {
328
+ readonly inputs: readonly [{
329
+ readonly internalType: "uint256";
330
+ readonly name: "fundValue";
331
+ readonly type: "uint256";
332
+ }];
333
+ readonly name: "calculateAvailableManagerFee";
334
+ readonly outputs: readonly [{
335
+ readonly internalType: "uint256";
336
+ readonly name: "fee";
337
+ readonly type: "uint256";
338
+ }];
339
+ readonly stateMutability: "view";
340
+ readonly type: "function";
341
+ }, {
342
+ readonly inputs: readonly [];
343
+ readonly name: "decimals";
344
+ readonly outputs: readonly [{
345
+ readonly internalType: "uint8";
346
+ readonly name: "";
347
+ readonly type: "uint8";
348
+ }];
349
+ readonly stateMutability: "view";
350
+ readonly type: "function";
351
+ }, {
352
+ readonly inputs: readonly [{
353
+ readonly internalType: "address";
354
+ readonly name: "_asset";
355
+ readonly type: "address";
356
+ }, {
357
+ readonly internalType: "uint256";
358
+ readonly name: "_amount";
359
+ readonly type: "uint256";
360
+ }];
361
+ readonly name: "deposit";
362
+ readonly outputs: readonly [{
363
+ readonly internalType: "uint256";
364
+ readonly name: "liquidityMinted";
365
+ readonly type: "uint256";
366
+ }];
367
+ readonly stateMutability: "nonpayable";
368
+ readonly type: "function";
369
+ }, {
370
+ readonly inputs: readonly [{
371
+ readonly internalType: "address";
372
+ readonly name: "sender";
373
+ readonly type: "address";
374
+ }];
375
+ readonly name: "getExitRemainingCooldown";
376
+ readonly outputs: readonly [{
377
+ readonly internalType: "uint256";
378
+ readonly name: "remaining";
379
+ readonly type: "uint256";
380
+ }];
381
+ readonly stateMutability: "view";
382
+ readonly type: "function";
383
+ }, {
384
+ readonly inputs: readonly [];
385
+ readonly name: "getFundSummary";
386
+ readonly outputs: readonly [{
387
+ readonly components: readonly [{
388
+ readonly internalType: "string";
389
+ readonly name: "name";
390
+ readonly type: "string";
391
+ }, {
392
+ readonly internalType: "uint256";
393
+ readonly name: "totalSupply";
394
+ readonly type: "uint256";
395
+ }, {
396
+ readonly internalType: "uint256";
397
+ readonly name: "totalFundValue";
398
+ readonly type: "uint256";
399
+ }, {
400
+ readonly internalType: "address";
401
+ readonly name: "manager";
402
+ readonly type: "address";
403
+ }, {
404
+ readonly internalType: "string";
405
+ readonly name: "managerName";
406
+ readonly type: "string";
407
+ }, {
408
+ readonly internalType: "uint256";
409
+ readonly name: "creationTime";
410
+ readonly type: "uint256";
411
+ }, {
412
+ readonly internalType: "bool";
413
+ readonly name: "privatePool";
414
+ readonly type: "bool";
415
+ }, {
416
+ readonly internalType: "uint256";
417
+ readonly name: "performanceFeeNumerator";
418
+ readonly type: "uint256";
419
+ }, {
420
+ readonly internalType: "uint256";
421
+ readonly name: "managerFeeNumerator";
422
+ readonly type: "uint256";
423
+ }, {
424
+ readonly internalType: "uint256";
425
+ readonly name: "managerFeeDenominator";
426
+ readonly type: "uint256";
427
+ }, {
428
+ readonly internalType: "uint256";
429
+ readonly name: "exitFeeNumerator";
430
+ readonly type: "uint256";
431
+ }, {
432
+ readonly internalType: "uint256";
433
+ readonly name: "exitFeeDenominator";
434
+ readonly type: "uint256";
435
+ }, {
436
+ readonly internalType: "uint256";
437
+ readonly name: "entryFeeNumerator";
438
+ readonly type: "uint256";
439
+ }];
440
+ readonly internalType: "struct PoolLogic.FundSummary";
441
+ readonly name: "";
442
+ readonly type: "tuple";
443
+ }];
444
+ readonly stateMutability: "view";
445
+ readonly type: "function";
446
+ }, {
447
+ readonly inputs: readonly [];
448
+ readonly name: "mintManagerFee";
449
+ readonly outputs: readonly [];
450
+ readonly stateMutability: "nonpayable";
451
+ readonly type: "function";
452
+ }, {
453
+ readonly inputs: readonly [];
454
+ readonly name: "name";
455
+ readonly outputs: readonly [{
456
+ readonly internalType: "string";
457
+ readonly name: "";
458
+ readonly type: "string";
459
+ }];
460
+ readonly stateMutability: "view";
461
+ readonly type: "function";
462
+ }, {
463
+ readonly inputs: readonly [];
464
+ readonly name: "poolManagerLogic";
465
+ readonly outputs: readonly [{
466
+ readonly internalType: "address";
467
+ readonly name: "";
468
+ readonly type: "address";
469
+ }];
470
+ readonly stateMutability: "view";
471
+ readonly type: "function";
472
+ }, {
473
+ readonly inputs: readonly [];
474
+ readonly name: "symbol";
475
+ readonly outputs: readonly [{
476
+ readonly internalType: "string";
477
+ readonly name: "";
478
+ readonly type: "string";
479
+ }];
480
+ readonly stateMutability: "view";
481
+ readonly type: "function";
482
+ }, {
483
+ readonly inputs: readonly [];
484
+ readonly name: "tokenPrice";
485
+ readonly outputs: readonly [{
486
+ readonly internalType: "uint256";
487
+ readonly name: "price";
488
+ readonly type: "uint256";
489
+ }];
490
+ readonly stateMutability: "view";
491
+ readonly type: "function";
492
+ }, {
493
+ readonly inputs: readonly [];
494
+ readonly name: "totalSupply";
495
+ readonly outputs: readonly [{
496
+ readonly internalType: "uint256";
497
+ readonly name: "";
498
+ readonly type: "uint256";
499
+ }];
500
+ readonly stateMutability: "view";
501
+ readonly type: "function";
502
+ }, {
503
+ readonly inputs: readonly [{
504
+ readonly internalType: "uint256";
505
+ readonly name: "_fundTokenAmount";
506
+ readonly type: "uint256";
507
+ }, {
508
+ readonly components: readonly [{
509
+ readonly internalType: "address";
510
+ readonly name: "supportedAsset";
511
+ readonly type: "address";
512
+ }, {
513
+ readonly internalType: "bytes";
514
+ readonly name: "withdrawData";
515
+ readonly type: "bytes";
516
+ }, {
517
+ readonly internalType: "uint256";
518
+ readonly name: "slippageTolerance";
519
+ readonly type: "uint256";
520
+ }];
521
+ readonly internalType: "struct IPoolLogic.ComplexAsset[]";
522
+ readonly name: "_complexAssetsData";
523
+ readonly type: "tuple[]";
524
+ }];
525
+ readonly name: "withdrawSafe";
526
+ readonly outputs: readonly [];
527
+ readonly stateMutability: "nonpayable";
528
+ readonly type: "function";
529
+ }, {
530
+ readonly inputs: readonly [{
531
+ readonly internalType: "uint256";
532
+ readonly name: "_fundTokenAmount";
533
+ readonly type: "uint256";
534
+ }, {
535
+ readonly internalType: "uint256";
536
+ readonly name: "_slippageTolerance";
537
+ readonly type: "uint256";
538
+ }];
539
+ readonly name: "withdrawSafe";
540
+ readonly outputs: readonly [];
541
+ readonly stateMutability: "nonpayable";
542
+ readonly type: "function";
543
+ }];
544
+ readonly functionName: "tokenPrice";
545
+ readonly chainId: number;
546
+ readonly args: readonly [];
547
+ }, {
548
+ readonly address: `0x${string}`;
549
+ readonly abi: readonly [{
550
+ readonly inputs: readonly [{
551
+ readonly internalType: "address";
552
+ readonly name: "owner";
553
+ readonly type: "address";
554
+ }, {
555
+ readonly internalType: "address";
556
+ readonly name: "spender";
557
+ readonly type: "address";
558
+ }];
559
+ readonly name: "allowance";
560
+ readonly outputs: readonly [{
561
+ readonly internalType: "uint256";
562
+ readonly name: "";
563
+ readonly type: "uint256";
564
+ }];
565
+ readonly stateMutability: "view";
566
+ readonly type: "function";
567
+ }, {
568
+ readonly inputs: readonly [{
569
+ readonly internalType: "address";
570
+ readonly name: "spender";
571
+ readonly type: "address";
572
+ }, {
573
+ readonly internalType: "uint256";
574
+ readonly name: "amount";
575
+ readonly type: "uint256";
576
+ }];
577
+ readonly name: "approve";
578
+ readonly outputs: readonly [{
579
+ readonly internalType: "bool";
580
+ readonly name: "";
581
+ readonly type: "bool";
582
+ }];
583
+ readonly stateMutability: "nonpayable";
584
+ readonly type: "function";
585
+ }, {
586
+ readonly inputs: readonly [{
587
+ readonly internalType: "address";
588
+ readonly name: "account";
589
+ readonly type: "address";
590
+ }];
591
+ readonly name: "balanceOf";
592
+ readonly outputs: readonly [{
593
+ readonly internalType: "uint256";
594
+ readonly name: "";
595
+ readonly type: "uint256";
596
+ }];
597
+ readonly stateMutability: "view";
598
+ readonly type: "function";
599
+ }, {
600
+ readonly inputs: readonly [{
601
+ readonly internalType: "uint256";
602
+ readonly name: "fundValue";
603
+ readonly type: "uint256";
604
+ }];
605
+ readonly name: "calculateAvailableManagerFee";
606
+ readonly outputs: readonly [{
607
+ readonly internalType: "uint256";
608
+ readonly name: "fee";
609
+ readonly type: "uint256";
610
+ }];
611
+ readonly stateMutability: "view";
612
+ readonly type: "function";
613
+ }, {
614
+ readonly inputs: readonly [];
615
+ readonly name: "decimals";
616
+ readonly outputs: readonly [{
617
+ readonly internalType: "uint8";
618
+ readonly name: "";
619
+ readonly type: "uint8";
620
+ }];
621
+ readonly stateMutability: "view";
622
+ readonly type: "function";
623
+ }, {
624
+ readonly inputs: readonly [{
625
+ readonly internalType: "address";
626
+ readonly name: "_asset";
627
+ readonly type: "address";
628
+ }, {
629
+ readonly internalType: "uint256";
630
+ readonly name: "_amount";
631
+ readonly type: "uint256";
632
+ }];
633
+ readonly name: "deposit";
634
+ readonly outputs: readonly [{
635
+ readonly internalType: "uint256";
636
+ readonly name: "liquidityMinted";
637
+ readonly type: "uint256";
638
+ }];
639
+ readonly stateMutability: "nonpayable";
640
+ readonly type: "function";
641
+ }, {
642
+ readonly inputs: readonly [{
643
+ readonly internalType: "address";
644
+ readonly name: "sender";
645
+ readonly type: "address";
646
+ }];
647
+ readonly name: "getExitRemainingCooldown";
648
+ readonly outputs: readonly [{
649
+ readonly internalType: "uint256";
650
+ readonly name: "remaining";
651
+ readonly type: "uint256";
652
+ }];
653
+ readonly stateMutability: "view";
654
+ readonly type: "function";
655
+ }, {
656
+ readonly inputs: readonly [];
657
+ readonly name: "getFundSummary";
658
+ readonly outputs: readonly [{
659
+ readonly components: readonly [{
660
+ readonly internalType: "string";
661
+ readonly name: "name";
662
+ readonly type: "string";
663
+ }, {
664
+ readonly internalType: "uint256";
665
+ readonly name: "totalSupply";
666
+ readonly type: "uint256";
667
+ }, {
668
+ readonly internalType: "uint256";
669
+ readonly name: "totalFundValue";
670
+ readonly type: "uint256";
671
+ }, {
672
+ readonly internalType: "address";
673
+ readonly name: "manager";
674
+ readonly type: "address";
675
+ }, {
676
+ readonly internalType: "string";
677
+ readonly name: "managerName";
678
+ readonly type: "string";
679
+ }, {
680
+ readonly internalType: "uint256";
681
+ readonly name: "creationTime";
682
+ readonly type: "uint256";
683
+ }, {
684
+ readonly internalType: "bool";
685
+ readonly name: "privatePool";
686
+ readonly type: "bool";
687
+ }, {
688
+ readonly internalType: "uint256";
689
+ readonly name: "performanceFeeNumerator";
690
+ readonly type: "uint256";
691
+ }, {
692
+ readonly internalType: "uint256";
693
+ readonly name: "managerFeeNumerator";
694
+ readonly type: "uint256";
695
+ }, {
696
+ readonly internalType: "uint256";
697
+ readonly name: "managerFeeDenominator";
698
+ readonly type: "uint256";
699
+ }, {
700
+ readonly internalType: "uint256";
701
+ readonly name: "exitFeeNumerator";
702
+ readonly type: "uint256";
703
+ }, {
704
+ readonly internalType: "uint256";
705
+ readonly name: "exitFeeDenominator";
706
+ readonly type: "uint256";
707
+ }, {
708
+ readonly internalType: "uint256";
709
+ readonly name: "entryFeeNumerator";
710
+ readonly type: "uint256";
711
+ }];
712
+ readonly internalType: "struct PoolLogic.FundSummary";
713
+ readonly name: "";
714
+ readonly type: "tuple";
715
+ }];
716
+ readonly stateMutability: "view";
717
+ readonly type: "function";
718
+ }, {
719
+ readonly inputs: readonly [];
720
+ readonly name: "mintManagerFee";
721
+ readonly outputs: readonly [];
722
+ readonly stateMutability: "nonpayable";
723
+ readonly type: "function";
724
+ }, {
725
+ readonly inputs: readonly [];
726
+ readonly name: "name";
727
+ readonly outputs: readonly [{
728
+ readonly internalType: "string";
729
+ readonly name: "";
730
+ readonly type: "string";
731
+ }];
732
+ readonly stateMutability: "view";
733
+ readonly type: "function";
734
+ }, {
735
+ readonly inputs: readonly [];
736
+ readonly name: "poolManagerLogic";
737
+ readonly outputs: readonly [{
738
+ readonly internalType: "address";
739
+ readonly name: "";
740
+ readonly type: "address";
741
+ }];
742
+ readonly stateMutability: "view";
743
+ readonly type: "function";
744
+ }, {
745
+ readonly inputs: readonly [];
746
+ readonly name: "symbol";
747
+ readonly outputs: readonly [{
748
+ readonly internalType: "string";
749
+ readonly name: "";
750
+ readonly type: "string";
751
+ }];
752
+ readonly stateMutability: "view";
753
+ readonly type: "function";
754
+ }, {
755
+ readonly inputs: readonly [];
756
+ readonly name: "tokenPrice";
757
+ readonly outputs: readonly [{
758
+ readonly internalType: "uint256";
759
+ readonly name: "price";
760
+ readonly type: "uint256";
761
+ }];
762
+ readonly stateMutability: "view";
763
+ readonly type: "function";
764
+ }, {
765
+ readonly inputs: readonly [];
766
+ readonly name: "totalSupply";
767
+ readonly outputs: readonly [{
768
+ readonly internalType: "uint256";
769
+ readonly name: "";
770
+ readonly type: "uint256";
771
+ }];
772
+ readonly stateMutability: "view";
773
+ readonly type: "function";
774
+ }, {
775
+ readonly inputs: readonly [{
776
+ readonly internalType: "uint256";
777
+ readonly name: "_fundTokenAmount";
778
+ readonly type: "uint256";
779
+ }, {
780
+ readonly components: readonly [{
781
+ readonly internalType: "address";
782
+ readonly name: "supportedAsset";
783
+ readonly type: "address";
784
+ }, {
785
+ readonly internalType: "bytes";
786
+ readonly name: "withdrawData";
787
+ readonly type: "bytes";
788
+ }, {
789
+ readonly internalType: "uint256";
790
+ readonly name: "slippageTolerance";
791
+ readonly type: "uint256";
792
+ }];
793
+ readonly internalType: "struct IPoolLogic.ComplexAsset[]";
794
+ readonly name: "_complexAssetsData";
795
+ readonly type: "tuple[]";
796
+ }];
797
+ readonly name: "withdrawSafe";
798
+ readonly outputs: readonly [];
799
+ readonly stateMutability: "nonpayable";
800
+ readonly type: "function";
801
+ }, {
802
+ readonly inputs: readonly [{
803
+ readonly internalType: "uint256";
804
+ readonly name: "_fundTokenAmount";
805
+ readonly type: "uint256";
806
+ }, {
807
+ readonly internalType: "uint256";
808
+ readonly name: "_slippageTolerance";
809
+ readonly type: "uint256";
810
+ }];
811
+ readonly name: "withdrawSafe";
812
+ readonly outputs: readonly [];
813
+ readonly stateMutability: "nonpayable";
814
+ readonly type: "function";
815
+ }];
816
+ readonly functionName: "getFundSummary";
817
+ readonly chainId: number;
818
+ }, {
819
+ readonly address: `0x${string}`;
820
+ readonly abi: readonly [{
821
+ readonly inputs: readonly [{
822
+ readonly internalType: "address";
823
+ readonly name: "owner";
824
+ readonly type: "address";
825
+ }, {
826
+ readonly internalType: "address";
827
+ readonly name: "spender";
828
+ readonly type: "address";
829
+ }];
830
+ readonly name: "allowance";
831
+ readonly outputs: readonly [{
832
+ readonly internalType: "uint256";
833
+ readonly name: "";
834
+ readonly type: "uint256";
835
+ }];
836
+ readonly stateMutability: "view";
837
+ readonly type: "function";
838
+ }, {
839
+ readonly inputs: readonly [{
840
+ readonly internalType: "address";
841
+ readonly name: "spender";
842
+ readonly type: "address";
843
+ }, {
844
+ readonly internalType: "uint256";
845
+ readonly name: "amount";
846
+ readonly type: "uint256";
847
+ }];
848
+ readonly name: "approve";
849
+ readonly outputs: readonly [{
850
+ readonly internalType: "bool";
851
+ readonly name: "";
852
+ readonly type: "bool";
853
+ }];
854
+ readonly stateMutability: "nonpayable";
855
+ readonly type: "function";
856
+ }, {
857
+ readonly inputs: readonly [{
858
+ readonly internalType: "address";
859
+ readonly name: "account";
860
+ readonly type: "address";
861
+ }];
862
+ readonly name: "balanceOf";
863
+ readonly outputs: readonly [{
864
+ readonly internalType: "uint256";
865
+ readonly name: "";
866
+ readonly type: "uint256";
867
+ }];
868
+ readonly stateMutability: "view";
869
+ readonly type: "function";
870
+ }, {
871
+ readonly inputs: readonly [{
872
+ readonly internalType: "uint256";
873
+ readonly name: "fundValue";
874
+ readonly type: "uint256";
875
+ }];
876
+ readonly name: "calculateAvailableManagerFee";
877
+ readonly outputs: readonly [{
878
+ readonly internalType: "uint256";
879
+ readonly name: "fee";
880
+ readonly type: "uint256";
881
+ }];
882
+ readonly stateMutability: "view";
883
+ readonly type: "function";
884
+ }, {
885
+ readonly inputs: readonly [];
886
+ readonly name: "decimals";
887
+ readonly outputs: readonly [{
888
+ readonly internalType: "uint8";
889
+ readonly name: "";
890
+ readonly type: "uint8";
891
+ }];
892
+ readonly stateMutability: "view";
893
+ readonly type: "function";
894
+ }, {
895
+ readonly inputs: readonly [{
896
+ readonly internalType: "address";
897
+ readonly name: "_asset";
898
+ readonly type: "address";
899
+ }, {
900
+ readonly internalType: "uint256";
901
+ readonly name: "_amount";
902
+ readonly type: "uint256";
903
+ }];
904
+ readonly name: "deposit";
905
+ readonly outputs: readonly [{
906
+ readonly internalType: "uint256";
907
+ readonly name: "liquidityMinted";
908
+ readonly type: "uint256";
909
+ }];
910
+ readonly stateMutability: "nonpayable";
911
+ readonly type: "function";
912
+ }, {
913
+ readonly inputs: readonly [{
914
+ readonly internalType: "address";
915
+ readonly name: "sender";
916
+ readonly type: "address";
917
+ }];
918
+ readonly name: "getExitRemainingCooldown";
919
+ readonly outputs: readonly [{
920
+ readonly internalType: "uint256";
921
+ readonly name: "remaining";
922
+ readonly type: "uint256";
923
+ }];
924
+ readonly stateMutability: "view";
925
+ readonly type: "function";
926
+ }, {
927
+ readonly inputs: readonly [];
928
+ readonly name: "getFundSummary";
929
+ readonly outputs: readonly [{
930
+ readonly components: readonly [{
931
+ readonly internalType: "string";
932
+ readonly name: "name";
933
+ readonly type: "string";
934
+ }, {
935
+ readonly internalType: "uint256";
936
+ readonly name: "totalSupply";
937
+ readonly type: "uint256";
938
+ }, {
939
+ readonly internalType: "uint256";
940
+ readonly name: "totalFundValue";
941
+ readonly type: "uint256";
942
+ }, {
943
+ readonly internalType: "address";
944
+ readonly name: "manager";
945
+ readonly type: "address";
946
+ }, {
947
+ readonly internalType: "string";
948
+ readonly name: "managerName";
949
+ readonly type: "string";
950
+ }, {
951
+ readonly internalType: "uint256";
952
+ readonly name: "creationTime";
953
+ readonly type: "uint256";
954
+ }, {
955
+ readonly internalType: "bool";
956
+ readonly name: "privatePool";
957
+ readonly type: "bool";
958
+ }, {
959
+ readonly internalType: "uint256";
960
+ readonly name: "performanceFeeNumerator";
961
+ readonly type: "uint256";
962
+ }, {
963
+ readonly internalType: "uint256";
964
+ readonly name: "managerFeeNumerator";
965
+ readonly type: "uint256";
966
+ }, {
967
+ readonly internalType: "uint256";
968
+ readonly name: "managerFeeDenominator";
969
+ readonly type: "uint256";
970
+ }, {
971
+ readonly internalType: "uint256";
972
+ readonly name: "exitFeeNumerator";
973
+ readonly type: "uint256";
974
+ }, {
975
+ readonly internalType: "uint256";
976
+ readonly name: "exitFeeDenominator";
977
+ readonly type: "uint256";
978
+ }, {
979
+ readonly internalType: "uint256";
980
+ readonly name: "entryFeeNumerator";
981
+ readonly type: "uint256";
982
+ }];
983
+ readonly internalType: "struct PoolLogic.FundSummary";
984
+ readonly name: "";
985
+ readonly type: "tuple";
986
+ }];
987
+ readonly stateMutability: "view";
988
+ readonly type: "function";
989
+ }, {
990
+ readonly inputs: readonly [];
991
+ readonly name: "mintManagerFee";
992
+ readonly outputs: readonly [];
993
+ readonly stateMutability: "nonpayable";
994
+ readonly type: "function";
995
+ }, {
996
+ readonly inputs: readonly [];
997
+ readonly name: "name";
998
+ readonly outputs: readonly [{
999
+ readonly internalType: "string";
1000
+ readonly name: "";
1001
+ readonly type: "string";
1002
+ }];
1003
+ readonly stateMutability: "view";
1004
+ readonly type: "function";
1005
+ }, {
1006
+ readonly inputs: readonly [];
1007
+ readonly name: "poolManagerLogic";
1008
+ readonly outputs: readonly [{
1009
+ readonly internalType: "address";
1010
+ readonly name: "";
1011
+ readonly type: "address";
1012
+ }];
1013
+ readonly stateMutability: "view";
1014
+ readonly type: "function";
1015
+ }, {
1016
+ readonly inputs: readonly [];
1017
+ readonly name: "symbol";
1018
+ readonly outputs: readonly [{
1019
+ readonly internalType: "string";
1020
+ readonly name: "";
1021
+ readonly type: "string";
1022
+ }];
1023
+ readonly stateMutability: "view";
1024
+ readonly type: "function";
1025
+ }, {
1026
+ readonly inputs: readonly [];
1027
+ readonly name: "tokenPrice";
1028
+ readonly outputs: readonly [{
1029
+ readonly internalType: "uint256";
1030
+ readonly name: "price";
1031
+ readonly type: "uint256";
1032
+ }];
1033
+ readonly stateMutability: "view";
1034
+ readonly type: "function";
1035
+ }, {
1036
+ readonly inputs: readonly [];
1037
+ readonly name: "totalSupply";
1038
+ readonly outputs: readonly [{
1039
+ readonly internalType: "uint256";
1040
+ readonly name: "";
1041
+ readonly type: "uint256";
1042
+ }];
1043
+ readonly stateMutability: "view";
1044
+ readonly type: "function";
1045
+ }, {
1046
+ readonly inputs: readonly [{
1047
+ readonly internalType: "uint256";
1048
+ readonly name: "_fundTokenAmount";
1049
+ readonly type: "uint256";
1050
+ }, {
1051
+ readonly components: readonly [{
1052
+ readonly internalType: "address";
1053
+ readonly name: "supportedAsset";
1054
+ readonly type: "address";
1055
+ }, {
1056
+ readonly internalType: "bytes";
1057
+ readonly name: "withdrawData";
1058
+ readonly type: "bytes";
1059
+ }, {
1060
+ readonly internalType: "uint256";
1061
+ readonly name: "slippageTolerance";
1062
+ readonly type: "uint256";
1063
+ }];
1064
+ readonly internalType: "struct IPoolLogic.ComplexAsset[]";
1065
+ readonly name: "_complexAssetsData";
1066
+ readonly type: "tuple[]";
1067
+ }];
1068
+ readonly name: "withdrawSafe";
1069
+ readonly outputs: readonly [];
1070
+ readonly stateMutability: "nonpayable";
1071
+ readonly type: "function";
1072
+ }, {
1073
+ readonly inputs: readonly [{
1074
+ readonly internalType: "uint256";
1075
+ readonly name: "_fundTokenAmount";
1076
+ readonly type: "uint256";
1077
+ }, {
1078
+ readonly internalType: "uint256";
1079
+ readonly name: "_slippageTolerance";
1080
+ readonly type: "uint256";
1081
+ }];
1082
+ readonly name: "withdrawSafe";
1083
+ readonly outputs: readonly [];
1084
+ readonly stateMutability: "nonpayable";
1085
+ readonly type: "function";
1086
+ }];
1087
+ readonly functionName: "getExitRemainingCooldown";
1088
+ readonly chainId: number;
1089
+ readonly args: readonly [`0x${string}`];
1090
+ }];
1091
+ type PoolsMap = Record<Address, DynamicPoolContractData>;
1092
+ type UsePoolsDynamicParams = {
1093
+ account?: Address;
1094
+ };
1095
+ export declare const usePoolsDynamic: ({ account, }?: UsePoolsDynamicParams) => UseReadContractsReturnType<ReturnType<typeof getPoolContracts>, true, PoolsMap>;
1096
+ export {};