File tree Expand file tree Collapse file tree 8 files changed +24
-21
lines changed
Expand file tree Collapse file tree 8 files changed +24
-21
lines changed Original file line number Diff line number Diff line change 11import { Route , BrowserRouter as Router , Routes } from 'react-router-dom' ;
2- import { PageNotFound } from 'pages' ;
2+ import { PageNotFound } from 'pages/PageNotFound/PageNotFound ' ;
33import { routes } from 'routes' ;
44import { BatchTransactionsContextProvider } from 'wrappers' ;
55import { Layout } from './components' ;
Original file line number Diff line number Diff line change 11import { PropsWithChildren } from 'react' ;
2- import { useGetNetworkConfig } from 'lib/sdkDapp/sdkDappCore ' ;
2+ import { useGetNetworkConfig } from 'lib/sdkDapp/sdkDapp.hooks ' ;
33import { ExplorerLinkSDK } from 'lib/sdkDappCoreUI/sdkDappCoreUI.components' ;
44import { ExplorerLinkSDKPropsType } from 'lib/sdkDappCoreUI/sdkDappCoreUI.types' ;
55import { WithClassnameType } from 'types/componentsTypes' ;
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ import { WithClassnameType } from 'types';
22import { FormatAmountSDK } from '../../../sdkDappCoreUI/sdkDappCoreUI.components' ;
33import { FormatAmountSDKPropsType } from '../../../sdkDappCoreUI/sdkDappCoreUI.types' ;
44import { DECIMALS , DIGITS } from '../../../sdkDappUtils' ;
5- import { FormatAmountController , useGetNetworkConfig } from '../../sdkDappCore' ;
5+ import { FormatAmountController } from '../../sdkDapp.helpers' ;
6+ import { useGetNetworkConfig } from '../../sdkDapp.hooks' ;
67
78interface FormatAmountPropsType
89 extends Partial < FormatAmountSDKPropsType > ,
Original file line number Diff line number Diff line change 11export * from './components' ;
2- export * from './sdkDappCore' ;
3- export * from './sdkDappCore.types' ;
2+ export * from './sdkDapp.constants' ;
3+ export * from './sdkDapp.helpers' ;
4+ export * from './sdkDapp.hooks' ;
5+ export * from './sdkDapp.types' ;
Original file line number Diff line number Diff line change 1+ export {
2+ ACCOUNTS_ENDPOINT ,
3+ TRANSACTIONS_ENDPOINT
4+ } from '@multiversx/sdk-dapp-core/out/apiCalls/endpoints' ;
5+ export {
6+ EXTRA_GAS_LIMIT_GUARDED_TX ,
7+ GAS_LIMIT ,
8+ GAS_PRICE ,
9+ VERSION
10+ } from '@multiversx/sdk-dapp-core/out/constants/mvx.constants' ;
Original file line number Diff line number Diff line change 1- export {
2- ACCOUNTS_ENDPOINT ,
3- TRANSACTIONS_ENDPOINT
4- } from '@multiversx/sdk-dapp-core/out/apiCalls/endpoints' ;
5- export {
6- EXTRA_GAS_LIMIT_GUARDED_TX ,
7- GAS_LIMIT ,
8- GAS_PRICE ,
9- VERSION
10- } from '@multiversx/sdk-dapp-core/out/constants/mvx.constants' ;
111export { FormatAmountController } from '@multiversx/sdk-dapp-core/out/controllers/FormatAmountController' ;
122export { ProviderFactory } from '@multiversx/sdk-dapp-core/out/core/providers/ProviderFactory' ;
133export { TransactionManager } from '@multiversx/sdk-dapp-core/out/core/managers/TransactionManager' ;
@@ -20,9 +10,3 @@ export { getTransactions } from '@multiversx/sdk-dapp-core/out/apiCalls/transact
2010export { initApp } from '@multiversx/sdk-dapp-core/out/core/methods/initApp/initApp' ;
2111export { signTransactions } from '@multiversx/sdk-dapp-core/out/core/providers/strategies/helpers/signTransactions/signTransactions' ;
2212export { trimUsernameDomain } from '@multiversx/sdk-dapp-core/out/utils/account/trimUsernameDomain' ;
23- export { useGetAccount } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/account/useGetAccount' ;
24- export { useGetAccountInfo } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/account/useGetAccountInfo' ;
25- export { useGetIsLoggedIn } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/account/useGetIsLoggedIn' ;
26- export { useGetLoginInfo } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/loginInfo/useGetLoginInfo' ;
27- export { useGetNetworkConfig } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/network/useGetNetworkConfig' ;
28- export { useGetPendingTransactions } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/transactions/useGetPendingTransactions' ;
Original file line number Diff line number Diff line change 1+ export { useGetAccount } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/account/useGetAccount' ;
2+ export { useGetAccountInfo } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/account/useGetAccountInfo' ;
3+ export { useGetIsLoggedIn } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/account/useGetIsLoggedIn' ;
4+ export { useGetLoginInfo } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/loginInfo/useGetLoginInfo' ;
5+ export { useGetNetworkConfig } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/network/useGetNetworkConfig' ;
6+ export { useGetPendingTransactions } from '@multiversx/sdk-dapp-core/out/store/selectors/hooks/transactions/useGetPendingTransactions' ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments