@multiversx/sdk-dapp-liquidity 1.1.0-alpha.35 → 1.1.0-alpha.36

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/package.json CHANGED
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "homepage": "https://github.com/multiversx/mx-sdk-dapp-liquidity#readme",
30
30
  "license": "MIT",
31
- "version": "1.1.0-alpha.35",
31
+ "version": "1.1.0-alpha.36",
32
32
  "main": "index.js",
33
33
  "module": "index.mjs",
34
34
  "types": "index.d.ts",
@@ -147,9 +147,6 @@ const BridgeForm = ({
147
147
  const { switchNetwork } = react.useAppKitNetwork();
148
148
  const { config, options, supportedChains: sdkChains } = reactjs_context_useWeb3App.useWeb3App();
149
149
  const chainId = reactjs_hooks_useGetChainId.useGetChainId();
150
- console.log("BridgeForm", {
151
- nativeAuthToken
152
- });
153
150
  const {
154
151
  evmTokensWithBalances,
155
152
  mvxTokensWithBalances,
@@ -144,9 +144,6 @@ const BridgeForm = ({
144
144
  const { switchNetwork } = useAppKitNetwork();
145
145
  const { config, options, supportedChains: sdkChains } = useWeb3App();
146
146
  const chainId = useGetChainId();
147
- console.log("BridgeForm", {
148
- nativeAuthToken
149
- });
150
147
  const {
151
148
  evmTokensWithBalances,
152
149
  mvxTokensWithBalances,
@@ -31,7 +31,8 @@ const BridgeHistory = ({
31
31
  }) => {
32
32
  const { options } = reactjs_context_useWeb3App.useWeb3App();
33
33
  const { data, isLoading, isError } = reactjs_queries_useGetHistory_query.useGetHistoryQuery({
34
- address: mvxAddress
34
+ address: mvxAddress,
35
+ nativeAuthToken
35
36
  });
36
37
  const resolveTransactionIcon = React.useCallback((transaction) => {
37
38
  switch (transaction.status) {
@@ -28,7 +28,8 @@ const BridgeHistory = ({
28
28
  }) => {
29
29
  const { options } = useWeb3App();
30
30
  const { data, isLoading, isError } = useGetHistoryQuery({
31
- address: mvxAddress
31
+ address: mvxAddress,
32
+ nativeAuthToken
32
33
  });
33
34
  const resolveTransactionIcon = useCallback((transaction) => {
34
35
  switch (transaction.status) {