├── src ├── components │ ├── Ad │ │ ├── index.js │ │ ├── Carousel │ │ │ ├── index.js │ │ │ ├── CarouselItem │ │ │ │ ├── index.js │ │ │ │ ├── CarouselItem.scss │ │ │ │ └── CarouselItem.js │ │ │ ├── Carousel.scss │ │ │ └── Carousel.js │ │ ├── Ad.scss │ │ └── Ad.js │ ├── Tx │ │ ├── TxData │ │ │ ├── index.js │ │ │ ├── TxGetFrom │ │ │ │ ├── index.js │ │ │ │ └── TxGetFrom.js │ │ │ ├── TxMessage │ │ │ │ └── index.js │ │ │ ├── TxAddressOther │ │ │ │ ├── index.js │ │ │ │ └── TxAddressOther.js │ │ │ ├── TxData.scss │ │ │ └── TxData.js │ │ └── TxInfo │ │ │ ├── index.js │ │ │ ├── TxInfo.scss │ │ │ └── TxInfo.js │ ├── TxList │ │ ├── Table │ │ │ ├── index.js │ │ │ └── Table.scss │ │ └── TableRow │ │ │ └── index.js │ ├── common │ │ ├── Chart │ │ │ └── index.js │ │ ├── Img │ │ │ ├── index.js │ │ │ └── Img.js │ │ ├── NoTx │ │ │ ├── index.js │ │ │ ├── NoTx.js │ │ │ └── NoTx.scss │ │ ├── Decimal │ │ │ ├── index.js │ │ │ ├── Decimal.scss │ │ │ └── Decimal.js │ │ ├── InfoRow │ │ │ ├── index.js │ │ │ ├── InfoRow.js │ │ │ └── InfoRow.scss │ │ ├── Spinner │ │ │ ├── index.js │ │ │ ├── Spinner.scss │ │ │ └── Spinner.js │ │ ├── ErrorPage │ │ │ ├── index.js │ │ │ ├── ErrorPage.scss │ │ │ └── ErrorPage.js │ │ ├── NotFound │ │ │ └── index.js │ │ ├── PageTitle │ │ │ ├── index.js │ │ │ ├── PageTitle.js │ │ │ └── PageTitle.scss │ │ ├── ScrollTop │ │ │ ├── index.js │ │ │ ├── ScrollTop.scss │ │ │ └── ScrollTop.js │ │ ├── SearchArea │ │ │ ├── index.js │ │ │ ├── Dropdown │ │ │ │ ├── index.js │ │ │ │ └── Dropdown.scss │ │ │ └── SearchArea.scss │ │ ├── SortButton │ │ │ ├── index.js │ │ │ ├── SortButton.scss │ │ │ └── SortButton.js │ │ ├── SvgDisplay │ │ │ ├── index.js │ │ │ ├── SvgDisplay.scss │ │ │ └── SvgDisplay.js │ │ ├── DisplayIcon │ │ │ ├── index.js │ │ │ ├── DisplayIcon.scss │ │ │ └── DisplayIcon.js │ │ ├── TitleWrapper │ │ │ ├── index.js │ │ │ ├── TitleWrapper.js │ │ │ └── TitleWrapper.scss │ │ ├── WindowedList │ │ │ ├── index.js │ │ │ └── WindowedList.js │ │ ├── DisplayLongString │ │ │ ├── index.js │ │ │ ├── DisplayLongString.scss │ │ │ └── DisplayLongString.js │ │ ├── Loading │ │ │ ├── index.js │ │ │ ├── Loading.scss │ │ │ └── Loading.js │ │ ├── Modal │ │ │ └── Portal │ │ │ │ ├── index.js │ │ │ │ ├── Portal.scss │ │ │ │ └── Portal.js │ │ └── IndexedPagination │ │ │ └── index.js │ ├── Account │ │ ├── Address │ │ │ └── index.js │ │ ├── QrModal │ │ │ ├── index.js │ │ │ ├── QrModal.js │ │ │ └── QrModal.scss │ │ └── AssetTxs │ │ │ ├── index.js │ │ │ ├── TxTable │ │ │ ├── index.js │ │ │ └── TxTable.scss │ │ │ ├── AssetsTable │ │ │ ├── index.js │ │ │ └── AssetTable.scss │ │ │ ├── TxTableRows │ │ │ └── index.js │ │ │ ├── AssetsTableRows │ │ │ └── index.js │ │ │ └── AssetTxs.scss │ ├── Asset │ │ ├── Details │ │ │ └── index.js │ │ └── TxHolders │ │ │ ├── index.js │ │ │ ├── TxTable │ │ │ ├── index.js │ │ │ └── TxTable.scss │ │ │ ├── HoldersTable │ │ │ ├── index.js │ │ │ └── HoldersTable.scss │ │ │ ├── TxTableRows │ │ │ └── index.js │ │ │ └── HoldersTableRows │ │ │ └── index.js │ ├── AssetList │ │ ├── Search │ │ │ ├── index.js │ │ │ └── Search.js │ │ ├── Table │ │ │ └── index.js │ │ ├── StatusCard │ │ │ └── index.js │ │ └── TableRow │ │ │ └── index.js │ ├── Block │ │ ├── BlockTxs │ │ │ ├── index.js │ │ │ ├── BlockTxs.scss │ │ │ └── BlockTxs.js │ │ ├── BlockTitle │ │ │ ├── index.js │ │ │ ├── BlockTitle.js │ │ │ └── BlockTitle.scss │ │ └── BlockHeader │ │ │ ├── index.js │ │ │ └── BlockHeader.scss │ ├── BlockList │ │ ├── Table │ │ │ ├── index.js │ │ │ └── Table.scss │ │ └── TableRow │ │ │ ├── index.js │ │ │ └── TableRow.scss │ ├── Footer │ │ └── Footer │ │ │ └── index.js │ ├── Maintenance │ │ ├── index.js │ │ └── Maintenance.js │ ├── Dashboard │ │ ├── LinkCard │ │ │ ├── index.js │ │ │ ├── LinkCard.js │ │ │ └── LinkCard.scss │ │ ├── SearchArea │ │ │ ├── index.js │ │ │ └── SearchArea.js │ │ ├── TableWrapper │ │ │ ├── index.js │ │ │ ├── TableWrapper.js │ │ │ └── TableWrapper.scss │ │ └── DashboardContent │ │ │ ├── index.js │ │ │ ├── TxDisplay │ │ │ ├── index.js │ │ │ ├── TableRow │ │ │ │ ├── index.js │ │ │ │ ├── TableRow.js │ │ │ │ └── TableRow.scss │ │ │ └── TxDisplay.scss │ │ │ ├── GraphDisplay │ │ │ ├── index.js │ │ │ └── GraphDisplay.scss │ │ │ ├── PriceDisplay │ │ │ └── index.js │ │ │ └── BlocksDisplay │ │ │ ├── TableRow │ │ │ ├── index.js │ │ │ ├── TableRow.scss │ │ │ └── TableRow.js │ │ │ ├── index.js │ │ │ └── BlocksDisplay.scss │ └── Header │ │ ├── SubHeader │ │ ├── index.js │ │ └── SubHeaderAssets.js │ │ └── SearchAppBar │ │ └── index.js ├── containers │ ├── Asset │ │ ├── index.js │ │ ├── Asset.scss │ │ └── Asset.js │ ├── Account │ │ ├── index.js │ │ └── Account.scss │ ├── Tx │ │ ├── MockData │ │ │ └── index.js │ │ ├── index.js │ │ └── Tx.scss │ ├── Block │ │ ├── index.js │ │ └── Block.scss │ ├── Footer │ │ ├── index.js │ │ └── Footer.js │ ├── Header │ │ ├── index.js │ │ └── Header.js │ ├── Router │ │ ├── index.js │ │ └── Router.scss │ ├── TxList │ │ ├── index.js │ │ ├── TxList.scss │ │ └── TxList.js │ ├── BlockList │ │ ├── index.js │ │ ├── BlockList.scss │ │ └── BlockList.js │ ├── NotFound │ │ ├── index.js │ │ └── NotFound.js │ ├── AssetList │ │ └── index.js │ └── Dashboard │ │ ├── index.js │ │ ├── Dashboard.scss │ │ └── Dashboard.js ├── hooks │ ├── useMultiFetch │ │ ├── index.js │ │ └── reducer.js │ ├── usePagedPagination │ │ ├── index.js │ │ ├── reducer.js │ │ └── usePagedPagination.js │ ├── useLoadedNumberedPagination │ │ ├── index.js │ │ ├── useLoadedNumberedPagination.js │ │ └── usePager.js │ ├── useFetch │ │ ├── index.js │ │ ├── reducer.js │ │ └── useFetch.js │ ├── useIndexedPagination │ │ └── index.js │ ├── usePrevious.js │ ├── useDelayedInput.js │ ├── useTimer.js │ ├── useScroll.js │ ├── useWindowSize.js │ ├── useCheckOutsideClick.js │ ├── useIncrementalListLoader.js │ ├── useBetterState.js │ ├── useGetImage.js │ ├── index.js │ ├── useSearch.js │ ├── useGetPrices.js │ └── usePreload.js ├── App.scss ├── assets │ ├── dashboard │ │ ├── main_img.png │ │ ├── search_btn.svg │ │ ├── blocktime_ic.svg │ │ ├── exchange_ic.svg │ │ └── jex_ic.svg │ ├── assets │ │ ├── arrow_bk.svg │ │ ├── arrow_gr.svg │ │ ├── up_gr.svg │ │ ├── down_rd.svg │ │ ├── email_btn.svg │ │ ├── email_btn_hover.svg │ │ ├── facebook_btn.svg │ │ ├── facebook_btn_hover.svg │ │ ├── youtube_btn.svg │ │ ├── telegram_btn.svg │ │ ├── youtube_btn_hover.svg │ │ ├── telegram_btn_hover.svg │ │ ├── linkedin_btn.svg │ │ ├── linkedin_btn_hover.svg │ │ ├── binance_info_btn.svg │ │ ├── binance_info_btn_hover.svg │ │ ├── medium_btn.svg │ │ ├── reddit_btn.svg │ │ ├── medium_btn_hover.svg │ │ ├── reddit_btn_hover.svg │ │ ├── twitter_btn.svg │ │ ├── research_btn.svg │ │ ├── research_btn_hover.svg │ │ ├── discord_btn.svg │ │ └── discord_btn_hover.svg │ ├── common │ │ ├── check_box.svg │ │ ├── check_box_blank.svg │ │ ├── check_box_blank_hover.svg │ │ ├── scroll_top.svg │ │ ├── arrow_up.svg │ │ ├── arrow_down.svg │ │ ├── dropdown_arrow.svg │ │ ├── to-next-page.svg │ │ ├── search-icon.svg │ │ ├── to-next-page_inactive.svg │ │ ├── to-last-page.svg │ │ ├── to-last-page_inactive.svg │ │ ├── arrow_ic.svg │ │ ├── transferarrow_rd.svg │ │ └── transferarrow_gr.svg │ ├── misc │ │ ├── arrow-next-gr.svg │ │ └── noitem_ic.svg │ ├── transactions │ │ ├── success_ic.svg │ │ ├── fail_ic.svg │ │ ├── symbol_arrow.svg │ │ ├── tx_more_btn.svg │ │ ├── symbol_detail_btn.svg │ │ ├── transferArrow.svg │ │ └── msgsic_7.svg │ ├── footer │ │ ├── email_btn.svg │ │ ├── wallet_btn.svg │ │ ├── telegram_btn.svg │ │ └── medium_btn.svg │ ├── account │ │ ├── copy_btn.svg │ │ └── copy_btn_over.svg │ └── header │ │ ├── dashboard_ic_none.svg │ │ ├── token_crypto_org.svg │ │ ├── token_starname.svg │ │ ├── dashboard_ic.svg │ │ ├── kava_token.svg │ │ ├── token_akash.svg │ │ ├── transations_ic_none.svg │ │ └── token_emoney.svg ├── index.js ├── styles │ ├── lib │ │ ├── _all.scss │ │ └── mixins │ │ │ ├── _animations.scss │ │ │ ├── _flex.scss │ │ │ ├── _grid.scss │ │ │ ├── _wrappers.scss │ │ │ ├── _table.scss │ │ │ └── _misc.scss │ └── utils.scss ├── store │ ├── modules │ │ └── index.js │ └── configure.js ├── config.js ├── App.js ├── constants │ ├── tooltips.js │ ├── getTxTypeIcon.js │ ├── txTypes.js │ └── getTxType.js ├── Root.js └── lib │ └── Big.js ├── public ├── favicon.ico ├── mintscan.png ├── favicon-16x16.png ├── favicon-32x32.png ├── apple-touch-icon.png ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── robot.txt ├── manifest.json ├── site.webmanifest └── safari-pinned-tab.svg ├── .prettierrc.json ├── .env ├── config ├── jest │ ├── cssTransform.js │ └── fileTransform.js └── pnpTs.js ├── jsconfig.json ├── .gitignore ├── docs └── CONTRIBUTING.md └── scripts └── test.js /src/components/Ad/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Ad"; 2 | -------------------------------------------------------------------------------- /src/containers/Asset/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Asset"; 2 | -------------------------------------------------------------------------------- /src/components/Tx/TxData/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TxData"; 2 | -------------------------------------------------------------------------------- /src/components/Tx/TxInfo/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TxInfo"; 2 | -------------------------------------------------------------------------------- /src/components/TxList/Table/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Table"; 2 | -------------------------------------------------------------------------------- /src/components/common/Chart/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Chart"; 2 | -------------------------------------------------------------------------------- /src/components/common/Img/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Img"; 2 | -------------------------------------------------------------------------------- /src/components/common/NoTx/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./NoTx"; 2 | -------------------------------------------------------------------------------- /src/containers/Account/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Account"; 2 | -------------------------------------------------------------------------------- /src/components/Account/Address/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Address"; 2 | -------------------------------------------------------------------------------- /src/components/Account/QrModal/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./QrModal"; 2 | -------------------------------------------------------------------------------- /src/components/Ad/Carousel/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Carousel"; 2 | -------------------------------------------------------------------------------- /src/components/Asset/Details/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Details"; 2 | -------------------------------------------------------------------------------- /src/components/AssetList/Search/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Search"; 2 | -------------------------------------------------------------------------------- /src/components/AssetList/Table/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Table"; 2 | -------------------------------------------------------------------------------- /src/components/Block/BlockTxs/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./BlockTxs"; 2 | -------------------------------------------------------------------------------- /src/components/BlockList/Table/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Table"; 2 | -------------------------------------------------------------------------------- /src/components/Footer/Footer/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Footer"; 2 | -------------------------------------------------------------------------------- /src/components/Maintenance/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Maintenance"; 2 | -------------------------------------------------------------------------------- /src/components/common/Decimal/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Decimal"; 2 | -------------------------------------------------------------------------------- /src/components/common/InfoRow/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./InfoRow"; 2 | -------------------------------------------------------------------------------- /src/components/common/Spinner/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Spinner"; 2 | -------------------------------------------------------------------------------- /src/containers/Tx/MockData/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./MockData"; 2 | -------------------------------------------------------------------------------- /src/hooks/useMultiFetch/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./useMultiFetch"; 2 | -------------------------------------------------------------------------------- /src/components/Account/AssetTxs/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./AssetTxs"; 2 | -------------------------------------------------------------------------------- /src/components/Asset/TxHolders/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TxHolders"; 2 | -------------------------------------------------------------------------------- /src/components/Block/BlockTitle/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./BlockTitle"; 2 | -------------------------------------------------------------------------------- /src/components/Dashboard/LinkCard/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./LinkCard"; 2 | -------------------------------------------------------------------------------- /src/components/common/ErrorPage/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./ErrorPage"; 2 | -------------------------------------------------------------------------------- /src/components/common/NotFound/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./NotFound"; 2 | -------------------------------------------------------------------------------- /src/components/common/PageTitle/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./PageTitle"; 2 | -------------------------------------------------------------------------------- /src/components/common/ScrollTop/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./ScrollTop"; 2 | -------------------------------------------------------------------------------- /src/components/common/SearchArea/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./SearchArea"; 2 | -------------------------------------------------------------------------------- /src/components/common/SortButton/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./SortButton"; 2 | -------------------------------------------------------------------------------- /src/components/common/SvgDisplay/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./SvgDisplay"; 2 | -------------------------------------------------------------------------------- /src/containers/Tx/index.js: -------------------------------------------------------------------------------- 1 | import Tx from "./Tx"; 2 | 3 | export default Tx; 4 | -------------------------------------------------------------------------------- /src/components/Account/AssetTxs/TxTable/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TxTable"; 2 | -------------------------------------------------------------------------------- /src/components/Asset/TxHolders/TxTable/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TxTable"; 2 | -------------------------------------------------------------------------------- /src/components/Block/BlockHeader/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./BlockHeader"; 2 | -------------------------------------------------------------------------------- /src/components/Dashboard/SearchArea/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./SearchArea"; 2 | -------------------------------------------------------------------------------- /src/components/Tx/TxData/TxGetFrom/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TxGetFrom"; 2 | -------------------------------------------------------------------------------- /src/components/Tx/TxData/TxMessage/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TxMessage"; 2 | -------------------------------------------------------------------------------- /src/components/common/DisplayIcon/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./DisplayIcon"; 2 | -------------------------------------------------------------------------------- /src/components/common/TitleWrapper/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TitleWrapper"; 2 | -------------------------------------------------------------------------------- /src/components/common/WindowedList/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./WindowedList"; 2 | -------------------------------------------------------------------------------- /src/hooks/usePagedPagination/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./usePagedPagination"; 2 | -------------------------------------------------------------------------------- /src/components/Ad/Carousel/CarouselItem/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./CarouselItem"; 2 | -------------------------------------------------------------------------------- /src/components/Dashboard/TableWrapper/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TableWrapper"; 2 | -------------------------------------------------------------------------------- /src/components/TxList/TableRow/index.js: -------------------------------------------------------------------------------- 1 | export {default, TableRowThin} from "./TableRow"; 2 | -------------------------------------------------------------------------------- /src/components/common/SearchArea/Dropdown/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./Dropdown"; 2 | -------------------------------------------------------------------------------- /src/containers/Block/index.js: -------------------------------------------------------------------------------- 1 | import Block from "./Block"; 2 | 3 | export default Block; 4 | -------------------------------------------------------------------------------- /src/components/Account/AssetTxs/AssetsTable/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./AssetsTable"; 2 | -------------------------------------------------------------------------------- /src/components/Asset/TxHolders/HoldersTable/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./HoldersTable"; 2 | -------------------------------------------------------------------------------- /src/components/BlockList/TableRow/index.js: -------------------------------------------------------------------------------- 1 | export {default, TableRowThin} from "./TableRow"; 2 | -------------------------------------------------------------------------------- /src/components/Dashboard/DashboardContent/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./DashboardContent"; 2 | -------------------------------------------------------------------------------- /src/components/Tx/TxData/TxAddressOther/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TxAddressOther"; 2 | -------------------------------------------------------------------------------- /src/components/common/DisplayLongString/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./DisplayLongString"; 2 | -------------------------------------------------------------------------------- /src/containers/Footer/index.js: -------------------------------------------------------------------------------- 1 | import Footer from "./Footer"; 2 | 3 | export default Footer; 4 | -------------------------------------------------------------------------------- /src/containers/Header/index.js: -------------------------------------------------------------------------------- 1 | import Header from "./Header"; 2 | 3 | export default Header; 4 | -------------------------------------------------------------------------------- /src/containers/Router/index.js: -------------------------------------------------------------------------------- 1 | import Router from "./Router"; 2 | 3 | export default Router; 4 | -------------------------------------------------------------------------------- /src/containers/TxList/index.js: -------------------------------------------------------------------------------- 1 | import TxList from "./TxList"; 2 | 3 | export default TxList; 4 | -------------------------------------------------------------------------------- /src/components/Dashboard/DashboardContent/TxDisplay/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TxDisplay"; 2 | -------------------------------------------------------------------------------- /src/containers/BlockList/index.js: -------------------------------------------------------------------------------- 1 | import Block from "./BlockList"; 2 | 3 | export default Block; 4 | -------------------------------------------------------------------------------- /src/components/Asset/TxHolders/TxTableRows/index.js: -------------------------------------------------------------------------------- 1 | export {default, ThinTableRow} from "./TxTableRows"; 2 | -------------------------------------------------------------------------------- /src/components/Dashboard/DashboardContent/GraphDisplay/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./GraphDisplay"; 2 | -------------------------------------------------------------------------------- /src/components/Dashboard/DashboardContent/PriceDisplay/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./PriceDisplay"; 2 | -------------------------------------------------------------------------------- /src/components/common/Loading/index.js: -------------------------------------------------------------------------------- 1 | import Loading from "./Loading"; 2 | 3 | export default Loading; 4 | -------------------------------------------------------------------------------- /src/containers/NotFound/index.js: -------------------------------------------------------------------------------- 1 | import NotFound from "./NotFound"; 2 | 3 | export default NotFound; 4 | -------------------------------------------------------------------------------- /src/hooks/useLoadedNumberedPagination/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./useLoadedNumberedPagination"; 2 | -------------------------------------------------------------------------------- /src/components/Account/AssetTxs/TxTableRows/index.js: -------------------------------------------------------------------------------- 1 | export {default, ThinTableRow} from "./TxTableRows"; 2 | -------------------------------------------------------------------------------- /src/components/Dashboard/DashboardContent/BlocksDisplay/TableRow/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TableRow"; 2 | -------------------------------------------------------------------------------- /src/components/Dashboard/DashboardContent/BlocksDisplay/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./BlocksDisplay"; 2 | -------------------------------------------------------------------------------- /src/components/Dashboard/DashboardContent/TxDisplay/TableRow/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TableRow"; 2 | -------------------------------------------------------------------------------- /src/containers/AssetList/index.js: -------------------------------------------------------------------------------- 1 | import AssetList from "./AssetList"; 2 | 3 | export default AssetList; 4 | -------------------------------------------------------------------------------- /src/containers/Dashboard/index.js: -------------------------------------------------------------------------------- 1 | import Dashboard from "./Dashboard"; 2 | 3 | export default Dashboard; 4 | -------------------------------------------------------------------------------- /src/hooks/useFetch/index.js: -------------------------------------------------------------------------------- 1 | import useFetch from "hooks/useFetch/useFetch"; 2 | 3 | export default useFetch; 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmostation/mintscan-binance-dex-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/mintscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmostation/mintscan-binance-dex-frontend/HEAD/public/mintscan.png -------------------------------------------------------------------------------- /src/components/Account/AssetTxs/AssetsTableRows/index.js: -------------------------------------------------------------------------------- 1 | export {default, ThinTableRows} from "./AssetTableRows"; 2 | -------------------------------------------------------------------------------- /src/components/Header/SubHeader/index.js: -------------------------------------------------------------------------------- 1 | import SubHeader from "./SubHeader"; 2 | 3 | export default SubHeader; 4 | -------------------------------------------------------------------------------- /src/containers/Tx/Tx.scss: -------------------------------------------------------------------------------- 1 | @import "../../styles/utils"; 2 | 3 | .Tx-wrapper { 4 | @include page-wrapper; 5 | } 6 | -------------------------------------------------------------------------------- /src/components/Asset/TxHolders/HoldersTableRows/index.js: -------------------------------------------------------------------------------- 1 | export {default, ThinTableRows} from "./HoldersTableRows"; 2 | -------------------------------------------------------------------------------- /src/components/AssetList/StatusCard/index.js: -------------------------------------------------------------------------------- 1 | import StatusCard from "./StatusCard"; 2 | 3 | export default StatusCard; 4 | -------------------------------------------------------------------------------- /src/components/common/Modal/Portal/index.js: -------------------------------------------------------------------------------- 1 | import ModalPortal from "./Portal"; 2 | 3 | export default ModalPortal; 4 | -------------------------------------------------------------------------------- /src/containers/Asset/Asset.scss: -------------------------------------------------------------------------------- 1 | @import "src/styles/utils"; 2 | 3 | .Asset-wrapper { 4 | @include page-wrapper; 5 | } 6 | -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmostation/mintscan-binance-dex-frontend/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmostation/mintscan-binance-dex-frontend/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /src/components/AssetList/TableRow/index.js: -------------------------------------------------------------------------------- 1 | export {default} from "./TableRow"; 2 | export {ThinTableRow} from "./TableRow"; 3 | -------------------------------------------------------------------------------- /src/components/Header/SearchAppBar/index.js: -------------------------------------------------------------------------------- 1 | import SearchAppBar from "./SearchAppBar"; 2 | 3 | export default SearchAppBar; 4 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmostation/mintscan-binance-dex-frontend/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- 1 | .App { 2 | width: 100vw; 3 | min-height: calc(100vh - var(--heightFooter)); 4 | background-color: #f5f5f5; 5 | } 6 | -------------------------------------------------------------------------------- /src/containers/Account/Account.scss: -------------------------------------------------------------------------------- 1 | @import "src/styles/utils"; 2 | 3 | .Account-wrapper { 4 | @include page-wrapper; 5 | } 6 | -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmostation/mintscan-binance-dex-frontend/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmostation/mintscan-binance-dex-frontend/HEAD/public/android-chrome-256x256.png -------------------------------------------------------------------------------- /src/assets/dashboard/main_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmostation/mintscan-binance-dex-frontend/HEAD/src/assets/dashboard/main_img.png -------------------------------------------------------------------------------- /src/components/common/IndexedPagination/index.js: -------------------------------------------------------------------------------- 1 | import IndexedPagination from "./IndexedPagination"; 2 | 3 | export default IndexedPagination; 4 | -------------------------------------------------------------------------------- /src/hooks/useIndexedPagination/index.js: -------------------------------------------------------------------------------- 1 | import useIndexedPagination from "./useIndexedPagination"; 2 | 3 | export default useIndexedPagination; 4 | -------------------------------------------------------------------------------- /src/components/common/SearchArea/SearchArea.scss: -------------------------------------------------------------------------------- 1 | @import "src/styles/utils"; 2 | 3 | .SearchArea-wrapper { 4 | width: 100%; 5 | position: relative; 6 | } -------------------------------------------------------------------------------- /src/containers/Block/Block.scss: -------------------------------------------------------------------------------- 1 | @import "src/styles/utils"; 2 | 3 | .Block { 4 | @include page-wrapper; 5 | 6 | .Card { 7 | @include card-wrapper(15px); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/containers/Footer/Footer.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Footer from "src/components/Footer/Footer"; 3 | 4 | export default function(props) { 5 | return