@dhedge/trading-widget 0.0.1 → 0.0.2
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.
- package/BPGFTGZB-348a28e3.cjs +1101 -0
- package/BPGFTGZB-3ace16f5.js +9284 -0
- package/core-kit/abi/aave-lending-pool.d.ts +846 -0
- package/core-kit/abi/dhedge-easy-swapper.d.ts +231 -0
- package/core-kit/abi/dhedge-staking-v2.d.ts +127 -0
- package/core-kit/abi/erc20.d.ts +1 -0
- package/core-kit/abi/index.d.ts +9 -0
- package/core-kit/abi/pool-factory.d.ts +57 -0
- package/core-kit/abi/pool-logic.d.ts +823 -0
- package/core-kit/abi/pool-manager-logic.d.ts +70 -0
- package/core-kit/abi/reward-distribution.d.ts +121 -0
- package/core-kit/abi/synthetix-v3/i-trusted-multicall-forwarder.d.ts +41 -0
- package/core-kit/abi/synthetix-v3/ierc-2771-context.d.ts +15 -0
- package/core-kit/abi/synthetix-v3/ierc-7412.d.ts +41 -0
- package/core-kit/abi/synthetix-v3/index.d.ts +6 -0
- package/core-kit/abi/synthetix-v3/synthetix-v3-asset-guard.d.ts +37 -0
- package/core-kit/abi/synthetix-v3/synthetix-v3-contract-guard.d.ts +45 -0
- package/core-kit/abi/synthetix-v3/synthetix-v3-core.d.ts +41 -0
- package/core-kit/const/config.d.ts +10 -0
- package/core-kit/const/contracts/arbitrum.d.ts +3 -0
- package/core-kit/const/contracts/base.d.ts +2 -0
- package/core-kit/const/contracts/index.d.ts +4 -0
- package/core-kit/const/contracts/optimism.d.ts +5 -0
- package/core-kit/const/contracts/polygon.d.ts +4 -0
- package/core-kit/const/currency.d.ts +2 -0
- package/core-kit/const/default-data.d.ts +23 -0
- package/core-kit/const/error.d.ts +4 -0
- package/core-kit/const/index.d.ts +11 -0
- package/core-kit/const/links.d.ts +1 -0
- package/core-kit/const/logger.d.ts +38 -0
- package/core-kit/const/network.d.ts +2232 -0
- package/core-kit/const/synthetix.d.ts +4 -0
- package/core-kit/const/tokens/arbitrum.d.ts +5 -0
- package/core-kit/const/tokens/base.d.ts +5 -0
- package/core-kit/const/tokens/index.d.ts +8 -0
- package/core-kit/const/tokens/optimism.d.ts +10 -0
- package/core-kit/const/tokens/polygon.d.ts +9 -0
- package/core-kit/const/web3.d.ts +4 -0
- package/core-kit/hooks/component/index.d.ts +2 -0
- package/core-kit/hooks/component/panel.d.ts +1 -0
- package/core-kit/hooks/component/tab.d.ts +2 -0
- package/core-kit/hooks/pool/index.d.ts +14 -0
- package/core-kit/hooks/pool/multicall/index.d.ts +4 -0
- package/core-kit/hooks/pool/multicall/use-pool-manager.dynamic.d.ts +910 -0
- package/core-kit/hooks/pool/multicall/use-pool-manager.static.d.ts +153 -0
- package/core-kit/hooks/pool/multicall/use-pool.static.d.ts +2432 -0
- package/core-kit/hooks/pool/multicall/use-pools.dynamic.d.ts +2489 -0
- package/core-kit/hooks/pool/synthetixV3/use-pool-token-price-mutable.d.ts +8 -0
- package/core-kit/hooks/pool/synthetixV3/use-synthetix-v3-asset-balance.d.ts +8 -0
- package/core-kit/hooks/pool/synthetixV3/use-total-funds-value-mutable.d.ts +8 -0
- package/core-kit/hooks/pool/use-check-whitelist.d.ts +2 -0
- package/core-kit/hooks/pool/use-contract-pool-composition.d.ts +3 -0
- package/core-kit/hooks/pool/use-invalidate-pool-contract-data.d.ts +1 -0
- package/core-kit/hooks/pool/use-is-dhedge-pool.d.ts +5 -0
- package/core-kit/hooks/pool/use-manager-logic-address.d.ts +2 -0
- package/core-kit/hooks/pool/use-pool-composition-with-fraction.d.ts +14 -0
- package/core-kit/hooks/pool/use-pool-composition.d.ts +3 -0
- package/core-kit/hooks/pool/use-pool-dynamic-contract-data.d.ts +19 -0
- package/core-kit/hooks/pool/use-pool-fees.d.ts +12 -0
- package/core-kit/hooks/pool/use-pool-manager-logic-data.d.ts +14 -0
- package/core-kit/hooks/pool/use-pool-token-price.d.ts +9 -0
- package/core-kit/hooks/referral/index.d.ts +1 -0
- package/core-kit/hooks/referral/use-referral-program.d.ts +2 -0
- package/core-kit/hooks/state/action.d.ts +23 -0
- package/core-kit/hooks/state/context.d.ts +2 -0
- package/core-kit/hooks/state/index.d.ts +9 -0
- package/core-kit/hooks/state/input.d.ts +13 -0
- package/core-kit/hooks/state/meta.d.ts +8 -0
- package/core-kit/hooks/state/modal.d.ts +5 -0
- package/core-kit/hooks/state/pool.d.ts +16 -0
- package/core-kit/hooks/state/settings.d.ts +5 -0
- package/core-kit/hooks/state/transaction.d.ts +5 -0
- package/core-kit/hooks/state/type.d.ts +6 -0
- package/core-kit/hooks/trading/allowance/index.d.ts +3 -0
- package/core-kit/hooks/trading/allowance/use-approve.d.ts +9 -0
- package/core-kit/hooks/trading/allowance/use-can-spend.d.ts +11 -0
- package/core-kit/hooks/trading/allowance/use-token-allowance-handler.d.ts +1 -0
- package/core-kit/hooks/trading/deposit/index.d.ts +9 -0
- package/core-kit/hooks/trading/deposit/use-deposit-allowance.d.ts +4 -0
- package/core-kit/hooks/trading/deposit/use-deposit-method-handler.d.ts +2 -0
- package/core-kit/hooks/trading/deposit/use-deposit-quote.d.ts +2 -0
- package/core-kit/hooks/trading/deposit/use-deposit-slippage.d.ts +1 -0
- package/core-kit/hooks/trading/deposit/use-deposit.d.ts +2 -0
- package/core-kit/hooks/trading/deposit/use-handle-pool-deposit-data.d.ts +1 -0
- package/core-kit/hooks/trading/deposit/use-pool-deposit-asset-address.d.ts +9 -0
- package/core-kit/hooks/trading/deposit/use-pool-deposit-tokens.d.ts +2 -0
- package/core-kit/hooks/trading/deposit/use-should-be-whitelisted.d.ts +4 -0
- package/core-kit/hooks/trading/index.d.ts +15 -0
- package/core-kit/hooks/trading/projected-earnings/use-deposit-projected-earnings.d.ts +2 -0
- package/core-kit/hooks/trading/projected-earnings/use-projected-earnings-core.d.ts +10 -0
- package/core-kit/hooks/trading/use-asset-price.d.ts +8 -0
- package/core-kit/hooks/trading/use-exchange-rate.d.ts +5 -0
- package/core-kit/hooks/trading/use-handle-pool-swap-info.d.ts +1 -0
- package/core-kit/hooks/trading/use-handle-trade.d.ts +6 -0
- package/core-kit/hooks/trading/use-is-easy-swapper-trading.d.ts +1 -0
- package/core-kit/hooks/trading/use-is-trading-enabled.d.ts +1 -0
- package/core-kit/hooks/trading/use-max-slippage-placeholder.d.ts +1 -0
- package/core-kit/hooks/trading/use-min-receive-text.d.ts +4 -0
- package/core-kit/hooks/trading/use-raw-asset-price.d.ts +8 -0
- package/core-kit/hooks/trading/use-synthetix-v3-oracles-update.d.ts +10 -0
- package/core-kit/hooks/trading/use-trading-params.d.ts +2 -0
- package/core-kit/hooks/trading/use-trading-price-diff.d.ts +8 -0
- package/core-kit/hooks/trading/use-trading-result-handling.d.ts +1 -0
- package/core-kit/hooks/trading/use-trading-settle-handler.d.ts +3 -0
- package/core-kit/hooks/trading/withdraw/index.d.ts +6 -0
- package/core-kit/hooks/trading/withdraw/use-is-multi-asset-withdraw.d.ts +1 -0
- package/core-kit/hooks/trading/withdraw/use-withdraw-allowance.d.ts +4 -0
- package/core-kit/hooks/trading/withdraw/use-withdraw-quote.d.ts +2 -0
- package/core-kit/hooks/trading/withdraw/use-withdraw-slippage.d.ts +9 -0
- package/core-kit/hooks/trading/withdraw/use-withdraw-type-handler.d.ts +1 -0
- package/core-kit/hooks/trading/withdraw/use-withdraw.d.ts +2 -0
- package/core-kit/hooks/user/index.d.ts +3 -0
- package/core-kit/hooks/user/use-is-insufficient-balance.d.ts +1 -0
- package/core-kit/hooks/user/use-is-pool-manager-account.d.ts +1 -0
- package/core-kit/hooks/user/use-user-token-balance.d.ts +8 -0
- package/core-kit/hooks/utils/index.d.ts +2 -0
- package/core-kit/hooks/utils/use-browser-storage.d.ts +1 -0
- package/core-kit/hooks/utils/use-debounce.d.ts +1 -0
- package/core-kit/hooks/web3/index.d.ts +13 -0
- package/core-kit/hooks/web3/use-account.d.ts +7 -0
- package/core-kit/hooks/web3/use-balance.d.ts +2 -0
- package/core-kit/hooks/web3/use-contract-function.d.ts +17 -0
- package/core-kit/hooks/web3/use-contract-read-error-logging.d.ts +6 -0
- package/core-kit/hooks/web3/use-contract-reads-error-logging.d.ts +5 -0
- package/core-kit/hooks/web3/use-gas-price.d.ts +2 -0
- package/core-kit/hooks/web3/use-invalidate-on-block.d.ts +6 -0
- package/core-kit/hooks/web3/use-invalidate-trading-queries.d.ts +4 -0
- package/core-kit/hooks/web3/use-is-wallet-connected.d.ts +1 -0
- package/core-kit/hooks/web3/use-network.d.ts +13 -0
- package/core-kit/hooks/web3/use-static-call-query.d.ts +12 -0
- package/core-kit/hooks/web3/use-token-allowance.d.ts +3 -0
- package/core-kit/index.d.ts +1 -0
- package/core-kit/models/buying-with-easyswapper-args.d.ts +18 -0
- package/core-kit/models/buying-with-native-asset-args.d.ts +16 -0
- package/core-kit/models/buying-with-pool-logic-args.d.ts +14 -0
- package/core-kit/models/default-selling-params.d.ts +18 -0
- package/core-kit/models/estimation-error.d.ts +20 -0
- package/core-kit/models/index.d.ts +5 -0
- package/core-kit/providers/index.d.ts +6 -0
- package/core-kit/providers/wagmi-provider.d.ts +2 -0
- package/core-kit/types/config.types.d.ts +29 -0
- package/core-kit/types/index.d.ts +8 -0
- package/core-kit/types/pool.types.d.ts +16 -0
- package/core-kit/types/referral.types.d.ts +12 -0
- package/core-kit/types/state.types.d.ts +113 -0
- package/core-kit/types/synthetix-v3.types.d.ts +9 -0
- package/core-kit/types/trading-panel.types.d.ts +49 -0
- package/core-kit/types/trading.types.d.ts +21 -0
- package/core-kit/types/web3.types.d.ts +51 -0
- package/core-kit/utils/error.d.ts +10 -0
- package/core-kit/utils/formatter.d.ts +16 -0
- package/core-kit/utils/index.d.ts +9 -0
- package/core-kit/utils/number.d.ts +8 -0
- package/core-kit/utils/synthetix-v3/eip-7412.d.ts +10 -0
- package/core-kit/utils/synthetix-v3/multicall-forwarder-batcher.d.ts +8 -0
- package/core-kit/utils/synthetix-v3/parse-error.d.ts +3 -0
- package/core-kit/utils/synthetix-v3/pyth-adapter.d.ts +12 -0
- package/core-kit/utils/synthetix.d.ts +10 -0
- package/core-kit/utils/token.d.ts +4 -0
- package/core-kit/utils/transaction.d.ts +4 -0
- package/core-kit/utils/ua.d.ts +1 -0
- package/core-kit/utils/url.d.ts +3 -0
- package/core-kit/utils/web3.d.ts +11 -0
- package/index-09acee2a.js +42963 -0
- package/index-d35b75f0.cjs +227 -0
- package/index.cjs +1 -0
- package/index.d.ts +18 -1
- package/index.js +264 -337
- package/package.json +19 -11
- package/style.css +1 -1
- package/{components → trading-widget/components}/common/badge/token-badge/token-badge.d.ts +1 -1
- package/{components → trading-widget/components}/common/icon/token-icon/token-icon.d.ts +1 -1
- package/trading-widget/components/common/layout/overlay/overlay.d.ts +7 -0
- package/{components → trading-widget/components}/common/meta/transaction-disclosure/transaction-disclosure-item/transaction-disclosure-item.d.ts +1 -1
- package/{components → trading-widget/components}/common/meta/transaction-disclosure/transaction-disclosure.d.ts +1 -1
- package/{components → trading-widget/components}/common/spinner/spinner.d.ts +1 -1
- package/{components → trading-widget/components}/common/tab/tab-button/tab-button.d.ts +1 -1
- package/trading-widget/components/default-examples/image/image.d.ts +3 -0
- package/trading-widget/components/deposit/button/trade-button/trade-button.hooks.d.ts +5 -0
- package/{components → trading-widget/components}/deposit/input-group/input-group.hooks.d.ts +1 -1
- package/{components → trading-widget/components}/deposit/meta/transaction-disclosure/transaction-disclosure.hooks.d.ts +2 -2
- package/{components → trading-widget/components}/index.d.ts +1 -1
- package/{components → trading-widget/components}/widget/widget-input/asset-composition-table/asset-composition-table.hooks.d.ts +2 -2
- package/{components → trading-widget/components}/widget/widget-input/token-selector/token-selector.d.ts +1 -1
- package/{components → trading-widget/components}/widget/widget-input/widget-input.hooks.d.ts +1 -1
- package/trading-widget/components/widget/widget-overlay/high-slippage-overlay/high-slippage-overlay.d.ts +3 -0
- package/trading-widget/components/widget/widget-overlay/index.d.ts +4 -0
- package/trading-widget/components/widget/widget-overlay/overlay-switch/overlay-switch.d.ts +2 -0
- package/trading-widget/components/widget/widget-overlay/terms-of-use-overlay/terms-of-use-overlay.d.ts +3 -0
- package/{components → trading-widget/components}/widget/widget-settings/slippage-selector/slippage-selector.hooks.d.ts +1 -1
- package/{components → trading-widget/components}/widget/widget-settings/widget-settings.d.ts +1 -1
- package/{components → trading-widget/components}/widget/widget.hooks.d.ts +1 -1
- package/{components → trading-widget/components}/withdraw/button/valid-withdraw-button/valid-withdraw-button.hooks.d.ts +1 -1
- package/{components → trading-widget/components}/withdraw/input-group/input-group.hooks.d.ts +1 -1
- package/{components → trading-widget/components}/withdraw/meta/transaction-disclosure/transaction-disclosure.hooks.d.ts +1 -1
- package/{constants → trading-widget/constants}/synthetix-v3.d.ts +1 -1
- package/{hooks → trading-widget/hooks}/use-get-slippage-placeholder.d.ts +1 -1
- package/{hooks → trading-widget/hooks}/use-get-theme-type-by-slippage.d.ts +1 -1
- package/{hooks → trading-widget/hooks}/use-trading-type-name.d.ts +1 -1
- package/{hooks → trading-widget/hooks}/use-user-staked-pools.d.ts +1 -1
- package/trading-widget/hooks/use-user-vault-balance.d.ts +3 -0
- package/{hooks → trading-widget/hooks}/use-user-vaults-balances.d.ts +1 -1
- package/{providers → trading-widget/providers}/component-provider/component-provider.d.ts +1 -0
- package/{providers → trading-widget/providers}/component-provider/component-provider.hooks.d.ts +1 -0
- package/{providers → trading-widget/providers}/component-provider/component-provider.types.d.ts +2 -0
- package/{providers → trading-widget/providers}/config-provider/config-provider.types.d.ts +3 -1
- package/trading-widget/providers/overlay-provider/index.d.ts +2 -0
- package/trading-widget/providers/overlay-provider/overlay-provider.d.ts +2 -0
- package/trading-widget/providers/overlay-provider/overlay-provider.hooks.d.ts +12 -0
- package/trading-widget/providers/overlay-provider/overlay-provider.types.d.ts +12 -0
- package/{providers → trading-widget/providers}/theme-provider/theme-provider.types.d.ts +3 -3
- package/{providers → trading-widget/providers}/translation-provider/translation-provider.types.d.ts +14 -0
- package/{types → trading-widget/types}/index.d.ts +1 -0
- package/trading-widget/types/overlay.types.d.ts +8 -0
- package/{types → trading-widget/types}/staking.types.d.ts +1 -1
- package/{utils → trading-widget/utils}/format.d.ts +1 -1
- package/{utils → trading-widget/utils}/synthetix-v3.d.ts +3 -3
- package/components/common/layout/overlay/overlay.d.ts +0 -2
- package/components/default-examples/image/image.d.ts +0 -3
- package/components/widget/widget-overlay/index.d.ts +0 -1
- package/hooks/use-user-vault-balance.d.ts +0 -3
- package/index.mjs +0 -54443
- package/native-15074a2a.mjs +0 -15
- package/native-243c3d4c.js +0 -1
- /package/{components → trading-widget/components}/common/balance/balance.d.ts +0 -0
- /package/{components → trading-widget/components}/common/button/action-button/action-button.d.ts +0 -0
- /package/{components → trading-widget/components}/common/button/disabled-button-with-prompt/disabled-button-with-prompt.d.ts +0 -0
- /package/{components → trading-widget/components}/common/button/icon-button/icon-button.d.ts +0 -0
- /package/{components → trading-widget/components}/common/button/max-balance-button/max-balance-button.d.ts +0 -0
- /package/{components → trading-widget/components}/common/index.d.ts +0 -0
- /package/{components → trading-widget/components}/common/layout/balance/balance.d.ts +0 -0
- /package/{components → trading-widget/components}/common/layout/index.d.ts +0 -0
- /package/{components → trading-widget/components}/common/layout/input-group/input-group.d.ts +0 -0
- /package/{components → trading-widget/components}/common/layout/meta/meta.d.ts +0 -0
- /package/{components → trading-widget/components}/common/layout/panel/panel.d.ts +0 -0
- /package/{components → trading-widget/components}/common/layout/settings/settings-popover/settings-popover.d.ts +0 -0
- /package/{components → trading-widget/components}/common/layout/settings/settings.d.ts +0 -0
- /package/{components → trading-widget/components}/common/overlay/pending-overlay/pending-overlay.d.ts +0 -0
- /package/{components → trading-widget/components}/common/settings/settings-option/settings-option.d.ts +0 -0
- /package/{components → trading-widget/components}/common/skeleton/skeleton.d.ts +0 -0
- /package/{components → trading-widget/components}/common/switch/switch.d.ts +0 -0
- /package/{components → trading-widget/components}/common/tooltip/info-tooltip/info-tooltip.d.ts +0 -0
- /package/{components → trading-widget/components}/common/tooltip/tooltip-icon/tooltip-icon.d.ts +0 -0
- /package/{components → trading-widget/components}/common/tooltip/tooltip-wrapper/tooltip-wrapper.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/balance/balance.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/balance/balance.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/button/trade-button/trade-button.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/button/valid-deposit-button/valid-deposit-button.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/button/valid-deposit-button/valid-deposit-button.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/index.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/input-group/input-group.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/meta/meta.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/meta/transaction-disclosure/transaction-disclosure.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/settings/deposit-fee-switch/deposit-fee-switch.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/settings/deposit-fee-switch/deposit-fee-switch.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/settings/deposit-settings/deposit-settings.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/settings/deposit-settings/deposit-settings.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/tab-panel/tab-panel.d.ts +0 -0
- /package/{components → trading-widget/components}/deposit/tab-panel/tab-panel.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-buttons/approve-button/approve-button.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-buttons/approve-button/approve-button.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-buttons/connect-wallet-button/connect-wallet-button.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-buttons/index.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-buttons/switch-network-button/switch-network-button.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-buttons/valid-network-button/valid-network-button.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-buttons/valid-network-button/valid-network-button.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-input/asset-composition-table/asset-composition-table.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-input/index.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-input/token-selector/token-selector.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-input/widget-input.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-input/widget-input.utils.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-meta/exchange-rate/exchange-rate.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-meta/index.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-overlay/pending-approval-overlay/pending-approval-overlay.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-overlay/pending-approval-overlay/pending-approval-overlay.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-settings/index.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-settings/slippage-selector/slippage-selector.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-settings/token-allowance-switch/token-allowance-switch.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget-tabs/widget-tabs.d.ts +0 -0
- /package/{components → trading-widget/components}/widget/widget.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/balance/balance.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/balance/balance.hooks.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/button/trade-button/trade-button.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/button/valid-withdraw-button/valid-withdraw-button.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/index.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/input-group/input-group.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/meta/meta.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/meta/transaction-disclosure/transaction-disclosure.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/settings/withdraw-settings/withdraw-settings.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/tab-panel/tab-panel.d.ts +0 -0
- /package/{components → trading-widget/components}/withdraw/tab-panel/tab-panel.hooks.d.ts +0 -0
- /package/{constants → trading-widget/constants}/tab.d.ts +0 -0
- /package/{hooks → trading-widget/hooks}/index.d.ts +0 -0
- /package/{hooks → trading-widget/hooks}/use-crypto-icon.d.ts +0 -0
- /package/{hooks → trading-widget/hooks}/use-high-slippage-check.d.ts +0 -0
- /package/{hooks → trading-widget/hooks}/use-synthetix-withdrawal-window.d.ts +0 -0
- /package/{providers → trading-widget/providers}/component-provider/index.d.ts +0 -0
- /package/{providers → trading-widget/providers}/config-provider/config-provider.d.ts +0 -0
- /package/{providers → trading-widget/providers}/config-provider/config-provider.defaults.d.ts +0 -0
- /package/{providers → trading-widget/providers}/config-provider/config-provider.hooks.d.ts +0 -0
- /package/{providers → trading-widget/providers}/config-provider/index.d.ts +0 -0
- /package/{providers → trading-widget/providers}/index.d.ts +0 -0
- /package/{providers → trading-widget/providers}/theme-provider/index.d.ts +0 -0
- /package/{providers → trading-widget/providers}/theme-provider/theme-provider.d.ts +0 -0
- /package/{providers → trading-widget/providers}/translation-provider/index.d.ts +0 -0
- /package/{providers → trading-widget/providers}/translation-provider/translation-provider.d.ts +0 -0
- /package/{providers → trading-widget/providers}/translation-provider/translation-provider.defaults.d.ts +0 -0
- /package/{providers → trading-widget/providers}/translation-provider/translation-provider.hooks.d.ts +0 -0
- /package/{types → trading-widget/types}/balance.types.d.ts +0 -0
- /package/{types → trading-widget/types}/synthetix-v3.types.d.ts +0 -0
- /package/{types → trading-widget/types}/theme.types.d.ts +0 -0
- /package/{utils → trading-widget/utils}/icon.d.ts +0 -0
package/native-15074a2a.mjs
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
function e() {
|
|
2
|
-
if (typeof WebSocket < "u")
|
|
3
|
-
return WebSocket;
|
|
4
|
-
if (typeof global.WebSocket < "u")
|
|
5
|
-
return global.WebSocket;
|
|
6
|
-
if (typeof window.WebSocket < "u")
|
|
7
|
-
return window.WebSocket;
|
|
8
|
-
if (typeof self.WebSocket < "u")
|
|
9
|
-
return self.WebSocket;
|
|
10
|
-
throw new Error("`WebSocket` is not supported in this environment");
|
|
11
|
-
}
|
|
12
|
-
const t = e();
|
|
13
|
-
export {
|
|
14
|
-
t as WebSocket
|
|
15
|
-
};
|
package/native-243c3d4c.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function e(){if(typeof WebSocket<"u")return WebSocket;if(typeof global.WebSocket<"u")return global.WebSocket;if(typeof window.WebSocket<"u")return window.WebSocket;if(typeof self.WebSocket<"u")return self.WebSocket;throw new Error("`WebSocket` is not supported in this environment")}const t=e();exports.WebSocket=t;
|
|
File without changes
|
/package/{components → trading-widget/components}/common/button/action-button/action-button.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/{components → trading-widget/components}/common/button/icon-button/icon-button.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{components → trading-widget/components}/common/layout/input-group/input-group.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{components → trading-widget/components}/common/tooltip/info-tooltip/info-tooltip.d.ts
RENAMED
|
File without changes
|
/package/{components → trading-widget/components}/common/tooltip/tooltip-icon/tooltip-icon.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{components → trading-widget/components}/deposit/button/trade-button/trade-button.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{components → trading-widget/components}/widget/widget-input/widget-input.utils.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{components → trading-widget/components}/withdraw/button/trade-button/trade-button.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{providers → trading-widget/providers}/config-provider/config-provider.defaults.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{providers → trading-widget/providers}/translation-provider/translation-provider.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/{providers → trading-widget/providers}/translation-provider/translation-provider.hooks.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|