repo
stringlengths
7
64
file_url
stringlengths
81
338
file_path
stringlengths
5
257
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:25:31
2026-01-05 01:50:38
truncated
bool
2 classes
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/pages/transactions/[tx].tsx
apps/web-provenance/src/pages/transactions/[tx].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import TransactionDetails from '@/screens/transaction_details'; import nextI18NextConfig from '../../../next-i18next.config'; const TransactionDetailsPage: NextPage = () => <TransactionDetails />; export const getStatic...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/components/nav/components/menu_items/utils.tsx
apps/web-provenance/src/components/nav/components/menu_items/utils.tsx
import AssetIcon from 'shared-utils/assets/icon-asset.svg'; import BlockIcon from 'shared-utils/assets/icon-block.svg'; import HomeIcon from 'shared-utils/assets/icon-home.svg'; import ParamIcon from 'shared-utils/assets/icon-param.svg'; import ProposalsIcon from 'shared-utils/assets/icon-proposals.svg'; import Transac...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/utils/go_to_page/index.ts
apps/web-provenance/src/utils/go_to_page/index.ts
import chainConfig from '@/chainConfig'; const { prefix } = chainConfig(); export const HOME = '/'; export const BLOCKS = '/blocks'; export const BLOCK_DETAILS = (slot: string | number): string => `/blocks/${slot}`; export const VALIDATOR_DETAILS = (address: string): string => `/validators/${address}`; export const V...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/utils.ts
apps/web-provenance/src/screens/assets/utils.ts
import { AssetType } from '@/screens/assets/types'; import { Property } from 'csstype'; export const columns: { columnKey: keyof AssetType; justifyContent?: Property.JustifyContent; textAlign?: Property.TextAlign; width: number | boolean; widthMobile: number | 'auto' | boolean; orderMobile?: Property.Order...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/index.tsx
apps/web-provenance/src/screens/assets/index.tsx
import InfiniteList from '@/components/InfiniteList'; import Layout from '@/components/layout'; import HeaderDesktop from '@/screens/assets/components/HeaderDesktop'; import RowDesktop from '@/screens/assets/components/RowDesktop'; import RowMobile from '@/screens/assets/components/RowMobile'; import SearchBox from '@/...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/styles.ts
apps/web-provenance/src/screens/assets/styles.ts
import { CSSObject } from 'tss-react'; import { makeStyles } from 'tss-react/mui'; export const HEIGHT_MOBILE = 36; export const HEIGHT_DESKTOP = 7; const useStyles = makeStyles()((theme) => ({ root: { ...(theme.mixins.layout as CSSObject), }, header: { '&& > .MuiGrid2-root': { display: 'flex', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/types.ts
apps/web-provenance/src/screens/assets/types.ts
import { MarkerAccountQuery, Marker_Account_Bool_Exp } from '@/graphql/types/general_types'; import { InfiniteQuery } from '@/hooks/useInfiniteQuery/types'; import { ReactNode } from 'react'; export interface AssetType { tokenName: ReactNode; price: ReactNode; markerType: ReactNode; supply: ReactNode; showMo...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/hooks.tsx
apps/web-provenance/src/screens/assets/hooks.tsx
import { MarkerAccountDocument, MarkerAccountQuery } from '@/graphql/types/general_types'; import useInfiniteQuery, { makeSummaryVar } from '@/hooks/useInfiniteQuery'; import useShallowMemo from '@/hooks/useShallowMemo'; import MarketType from '@/screens/assets/components/MarkerType'; import Price from '@/screens/asset...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/AccessControl/index.tsx
apps/web-provenance/src/screens/assets/components/AccessControl/index.tsx
import AvatarName from '@/components/avatar_name'; import useStyles from '@/screens/assets/styles'; import { AccessControl, permissionList } from '@/screens/assets/types'; import Box from '@mui/material/Box'; import Checkbox from '@mui/material/Checkbox'; import Table from '@mui/material/Table'; import TableBody from '...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/SearchBox/index.tsx
apps/web-provenance/src/screens/assets/components/SearchBox/index.tsx
import useStyles from '@/screens/assets/styles'; import SearchIcon from '@mui/icons-material/Search'; import TextField from '@mui/material/TextField'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; export interface SearchBoxProps { searchText: string; handleChange: (event: R...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/Price/index.tsx
apps/web-provenance/src/screens/assets/components/Price/index.tsx
import chainConfig from '@/chainConfig'; import { atomState } from '@/recoil/market'; import { PriceProps } from '@/screens/assets/types'; import { formatNumber } from '@/utils/format_token'; import CircularProgress from '@mui/material/CircularProgress'; import Big from 'big.js'; import { memo, ReactNode } from 'react'...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/MarkerAccountStatus/index.tsx
apps/web-provenance/src/screens/assets/components/MarkerAccountStatus/index.tsx
import useStyles from '@/screens/assets/styles'; import { statusList } from '@/screens/assets/types'; import Box from '@mui/material/Box'; import Typography from '@mui/material/Typography'; import { FC } from 'react'; const MarkerAccountStatus: FC<{ statusId: string }> = ({ statusId }) => { const { classes } = useSt...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/HeaderDesktop/index.tsx
apps/web-provenance/src/screens/assets/components/HeaderDesktop/index.tsx
import useStyles from '@/screens/assets/styles'; import { columns } from '@/screens/assets/utils'; import Grid2 from '@mui/material/Unstable_Grid2'; import useAppTranslation from '@/hooks/useAppTranslation'; const HeaderDesktop = () => { const { t } = useAppTranslation('assets'); const { classes } = useStyles(); ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/MarkerType/index.tsx
apps/web-provenance/src/screens/assets/components/MarkerType/index.tsx
import ChainIcon from '@/components/ChainIcon'; import { MarkerProps } from '@/screens/assets/types'; import Chip from '@mui/material/Chip'; import { memo } from 'react'; const MarketType = memo(({ markerType }: MarkerProps) => { if (markerType === 'MARKER_TYPE_COIN') { return ( <Chip icon={<ChainI...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/RowMobile/index.tsx
apps/web-provenance/src/screens/assets/components/RowMobile/index.tsx
import { RowProps } from '@/components/InfiniteList/types'; import { MarkerAccountQuery } from '@/graphql/types/general_types'; import { useAssetsByOffset } from '@/screens/assets/hooks'; import useStyles from '@/screens/assets/styles'; import { AssetQueryVariable, AssetType } from '@/screens/assets/types'; import { co...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/ShowMore/index.tsx
apps/web-provenance/src/screens/assets/components/ShowMore/index.tsx
import AccessControl from '@/screens/assets/components/AccessControl'; import AllowGovernanceControl from '@/screens/assets/components/AllowGovernanceControl'; import MarkerAccountStatus from '@/screens/assets/components/MarkerAccountStatus'; import useStyles from '@/screens/assets/styles'; import { ShowMoreProps } fro...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/RowDesktop/index.tsx
apps/web-provenance/src/screens/assets/components/RowDesktop/index.tsx
import { RowProps } from '@/components/InfiniteList/types'; import { MarkerAccountQuery } from '@/graphql/types/general_types'; import { useAssetsByOffset } from '@/screens/assets/hooks'; import useStyles from '@/screens/assets/styles'; import { AssetQueryVariable, AssetType } from '@/screens/assets/types'; import { co...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/AllowGovernanceControl/index.tsx
apps/web-provenance/src/screens/assets/components/AllowGovernanceControl/index.tsx
import Box from '@mui/material/Box'; import Checkbox from '@mui/material/Checkbox'; import { FC } from 'react'; const AllowGovernanceControl: FC<{ allowGovernanceControl: boolean }> = ({ allowGovernanceControl, }) => ( <Box> Allow Governance Control <Checkbox disabled checked={allowGovernanceControl} /> </Bo...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/Supply/index.tsx
apps/web-provenance/src/screens/assets/components/Supply/index.tsx
import chainConfig from '@/chainConfig'; import { atomState } from '@/recoil/market'; import useStyles from '@/screens/assets/styles'; import { formatNumber } from '@/utils/format_token'; import CircularProgress from '@mui/material/CircularProgress'; import Big from 'big.js'; import yaml from 'js-yaml'; import { FC } f...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/screens/assets/components/TokenName/index.tsx
apps/web-provenance/src/screens/assets/components/TokenName/index.tsx
import Avatar from '@/components/avatar'; import ChainIcon from '@/components/ChainIcon'; import useStyles from '@/screens/assets/styles'; import Box from '@mui/material/Box'; import Typography from '@mui/material/Typography'; import Grid2 from '@mui/material/Unstable_Grid2'; import { FC } from 'react'; interface Toke...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/jest.setup.ts
apps/web-multiversx/jest.setup.ts
import mockApollo from '@/tests/mocks/mockApollo'; import mockChainConfig from '@/tests/mocks/mockChainConfig'; import mockDayJs from '@/tests/mocks/mockDayJs'; import mockDynamicComponent from '@/tests/mocks/mockDynamicComponent'; import mockI18Next from '@/tests/mocks/mockI18Next'; import mockProfiles from '@/tests/m...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/jest.config.ts
apps/web-multiversx/jest.config.ts
import configFromPreset from 'jest-presets/jest/node/jest-preset'; import nextJest from 'next/jest'; import { pathsToModuleNameMapper } from 'ts-jest'; import tsconfig from './tsconfig.json'; /* Creating a jest configuration for nextjs. */ const createJestConfig = nextJest({ dir: './', })(configFromPreset); const e...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/next-env.d.ts
apps/web-multiversx/next-env.d.ts
/// <reference types="next" /> /// <reference types="next/image-types/global" /> // NOTE: This file should not be edited // see https://nextjs.org/docs/basic-features/typescript for more information.
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/declarations.d.ts
apps/web-multiversx/declarations.d.ts
declare module '*.png'; declare module '*.jpg'; declare module '*.jpeg'; declare module '*.svg'; declare module '*.svg?url'; declare module '*.gif'; declare module '*.woff2'; type Override<T1, T2> = Omit<T1, keyof T2> & T2; interface ComponentDefault { className?: string; } interface AvatarName extends ComponentDef...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/graphql/useApollo/index.ts
apps/web-multiversx/src/graphql/useApollo/index.ts
import chainConfig from '@/chainConfig'; import { ApolloClient, DefaultOptions, InMemoryCache, NormalizedCacheObject } from '@apollo/client'; import { RestLink } from 'apollo-link-rest'; import { useEffect, useState } from 'react'; const { chainType } = chainConfig(); /* Checking if the code is runnin...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/_app.tsx
apps/web-multiversx/src/pages/_app.tsx
import MyApp from '@/screens/app'; import { appWithTranslation } from 'next-i18next'; import 'react-toastify/dist/ReactToastify.css'; import 'shared-utils/assets/styles/global.css'; import nextI18NextConfig from '../../next-i18next.config'; export default appWithTranslation(MyApp, nextI18NextConfig);
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/404.tsx
apps/web-multiversx/src/pages/404.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import NotFound from '@/screens/404'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../next-i18next.config'; const Custom404: NextPage = () => <NotFound />; export const getStaticProps = withGetStaticProps(nextI18NextConfig); expo...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/index.tsx
apps/web-multiversx/src/pages/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Home from '@/screens/home'; import nextI18NextConfig from '../../next-i18next.config'; const HomePage: NextPage = () => <Home />; export const getStaticProps = withGetStaticProps( nextI18NextConfig, 'home', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/_document.tsx
apps/web-multiversx/src/pages/_document.tsx
import Document from 'next/document'; import DocumentComponent, { getInitialProps, DocumentComponentProps } from 'ui/pages/_document'; class MyDocument extends Document<DocumentComponentProps> { render() { return <DocumentComponent emotionStyleTags={this.props.emotionStyleTags} />; } } MyDocument.getInitialPr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/miniblocks/[hash].tsx
apps/web-multiversx/src/pages/miniblocks/[hash].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import MiniBlockDetails from '@/screens/miniblock_details'; import nextI18NextConfig from '../../../next-i18next.config'; const MiniBlockPage: NextPage = () => <MiniBlockDetails />; export const getStaticPaths = () => (...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/server-sitemap.xml/index.tsx
apps/web-multiversx/src/pages/server-sitemap.xml/index.tsx
import { IDENTITIES } from '@/api'; import { readFileSync } from 'fs'; import { GetServerSideProps } from 'next'; import { getServerSideSitemapLegacy } from 'next-sitemap'; import { basename } from 'path'; interface Result { identity: string; } function getSiteUrl() { const dir = JSON.parse(readFileSync('./packag...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/nodes/[hash].tsx
apps/web-multiversx/src/pages/nodes/[hash].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import NodeDetails from '@/screens/node_details'; import nextI18NextConfig from '../../../next-i18next.config'; const NodeDetailsPage: NextPage = () => <NodeDetails />; export const getStaticPaths = () => ({ paths: [], ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/validators/index.tsx
apps/web-multiversx/src/pages/validators/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import Validators from '@/screens/validators'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../../next-i18next.config'; const ValidatorsPage: NextPage = () => <Validators />; export const getStaticProps = withGetStaticProps( nex...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/validators/[identity].tsx
apps/web-multiversx/src/pages/validators/[identity].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import ValidatorDetails from '@/screens/validator_details'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../../next-i18next.config'; const ValidatorDetailsPage: NextPage = () => <ValidatorDetails />; export const getStaticPaths = ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/blocks/index.tsx
apps/web-multiversx/src/pages/blocks/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Blocks from '@/screens/blocks'; import nextI18NextConfig from '../../../next-i18next.config'; const BlocksPage: NextPage = () => <Blocks />; export const getStaticProps = withGetStaticProps(nextI18NextConfig, 'bl...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/blocks/[hash].tsx
apps/web-multiversx/src/pages/blocks/[hash].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import BlockDetails from '@/screens/block_details'; import nextI18NextConfig from '../../../next-i18next.config'; const BlockDetailsPage: NextPage = () => <BlockDetails />; export const getStaticPaths = () => ({ paths: ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/tokens/[token].tsx
apps/web-multiversx/src/pages/tokens/[token].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import TokenDetails from '@/screens/token_details'; import nextI18NextConfig from '../../../next-i18next.config'; const TokenDetailsPage: NextPage = () => <TokenDetails />; export const getStaticPaths = () => ({ paths: ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/tokens/index.tsx
apps/web-multiversx/src/pages/tokens/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Tokens from '@/screens/tokens'; import nextI18NextConfig from '../../../next-i18next.config'; const TokensPage: NextPage = () => <Tokens />; export const getStaticProps = withGetStaticProps(nextI18NextConfig, 'to...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/accounts/[address].tsx
apps/web-multiversx/src/pages/accounts/[address].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import AccountDetails from '@/screens/account_details'; import nextI18NextConfig from '../../../next-i18next.config'; const AccountDetailsPage: NextPage = () => <AccountDetails />; export const getStaticPaths = () => ({...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/transactions/index.tsx
apps/web-multiversx/src/pages/transactions/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Transactions from '@/screens/transactions'; import nextI18NextConfig from '../../../next-i18next.config'; const TransactionsPage: NextPage = () => <Transactions />; export const getStaticProps = withGetStaticProp...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/transactions/[hash].tsx
apps/web-multiversx/src/pages/transactions/[hash].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import TransactionDetails from '@/screens/transaction_details'; import nextI18NextConfig from '../../../next-i18next.config'; const TransactionDetailsPage: NextPage = () => <TransactionDetails />; export const getStatic...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/nfts/[nft].tsx
apps/web-multiversx/src/pages/nfts/[nft].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import NFTDetails from '@/screens/nft_details'; import nextI18NextConfig from '../../../next-i18next.config'; const NFTDetailsPage: NextPage = () => <NFTDetails />; export const getStaticPaths = () => ({ paths: [], fall...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/pages/nfts/index.tsx
apps/web-multiversx/src/pages/nfts/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Nfts from '@/screens/nfts'; import nextI18NextConfig from '../../../next-i18next.config'; const NftsPage: NextPage = () => <Nfts />; export const getStaticProps = withGetStaticProps(nextI18NextConfig, 'nfts', 'tr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/index.ts
apps/web-multiversx/src/components/index.ts
export { default as Avatar } from '@/components/avatar'; export { default as AvatarName } from '@/components/avatar_name'; export { default as AvatarNameListMsg } from '@/components/avatar_name_list_msg'; export { default as Box } from '@/components/box'; export { default as BoxDetails } from '@/components/box_details'...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/nav/components/title_bar/utils.tsx
apps/web-multiversx/src/components/nav/components/title_bar/utils.tsx
import numeral from 'numeral'; import { type AtomState } from '@/recoil/market'; export const formatMarket = (data: AtomState) => [ { key: 'marketCap', data: `$${numeral(data.marketCap).format('0,0')}`, }, { key: 'apr', data: numeral(data.apr).format('0%'), }, { key: 'price', data: `$...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/nav/components/menu_items/utils.tsx
apps/web-multiversx/src/components/nav/components/menu_items/utils.tsx
import BlockIcon from 'shared-utils/assets/icon-block.svg'; import HomeIcon from 'shared-utils/assets/icon-home.svg'; import NFTIcon from 'shared-utils/assets/icon-nft.svg'; import TokenIcon from 'shared-utils/assets/icon-token.svg'; import TransactionIcon from 'shared-utils/assets/icon-transaction.svg'; import UserIco...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/nav/components/search_bar/index.tsx
apps/web-multiversx/src/components/nav/components/search_bar/index.tsx
import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; import { useSearchBar } from '@/components/nav/components/search_bar/hooks'; import Search from '@/components/search'; const SearchBar: FC<ComponentDefault> = ({ className }) => { const { t } = useAppTranslation('common'); const...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/nav/components/search_bar/hooks.test.tsx
apps/web-multiversx/src/components/nav/components/search_bar/hooks.test.tsx
/* eslint-disable */ import chainConfig from '@/chainConfig'; import { useSearchBar } from '@/components/nav/components/search_bar/hooks'; import { act, renderHook } from '@testing-library/react'; import { RecoilRoot } from 'recoil'; // const { extra } = chainConfig(); const { prefix } = chainConfig(); const mockPush...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/nav/components/search_bar/hooks.ts
apps/web-multiversx/src/components/nav/components/search_bar/hooks.ts
import { useRouter } from 'next/router'; import { useCallback } from 'react'; import { ACCOUNT_DETAILS } from '@/utils/go_to_page'; export const useSearchBar = () => { const router = useRouter(); const handleOnSubmit = useCallback( (value: string, clear?: () => void) => { router.push(ACCOUNT_DETAILS(val...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/result/index.test.tsx
apps/web-multiversx/src/components/result/index.test.tsx
import renderer from 'react-test-renderer'; import Result from '@/components/result'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // unit tests // ================================== describe('components: Result', () => { it('matches snapshot', () => { const component = ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/result/index.tsx
apps/web-multiversx/src/components/result/index.tsx
import useStyles from '@/components/result/styles'; import CancelIcon from '@mui/icons-material/Cancel'; import CheckCircleIcon from '@mui/icons-material/CheckCircle'; import HelpIcon from '@mui/icons-material/Help'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTransla...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/result/styles.ts
apps/web-multiversx/src/components/result/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { display: 'inline-flex', alignItems: 'center', justifyContent: 'flex-start', color: theme.palette.custom.fonts.fontTwo, '& svg': { width: '16px', height: '16px', marginRight: theme.sp...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/blocks_list/index.tsx
apps/web-multiversx/src/components/blocks_list/index.tsx
import Desktop from '@/components/blocks_list/components/desktop'; import Mobile from '@/components/blocks_list/components/mobile'; import type { BlockListType } from '@/components/blocks_list/types'; import { useDisplayStyles } from '@/styles/useSharedStyles'; import { FC } from 'react'; const BlocksList: FC<BlockLis...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/blocks_list/types.ts
apps/web-multiversx/src/components/blocks_list/types.ts
export interface BlockListType { items: BlockType[]; }
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/blocks_list/components/index.ts
apps/web-multiversx/src/components/blocks_list/components/index.ts
import Desktop from '@/components/blocks_list/components/desktop'; import Mobile from '@/components/blocks_list/components/mobile'; export { Mobile, Desktop };
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/blocks_list/components/mobile/index.tsx
apps/web-multiversx/src/components/blocks_list/components/mobile/index.tsx
import SingleBlockMobile from '@/components/single_block_mobile'; import Timestamp from '@/components/Timestamp'; import { getMiddleEllipsis } from '@/utils/get_middle_ellipsis'; import { getShardDisplay } from '@/utils/get_shard_display'; import { BLOCK_DETAILS } from '@/utils/go_to_page'; import Divider from '@mui/ma...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/blocks_list/components/desktop/index.tsx
apps/web-multiversx/src/components/blocks_list/components/desktop/index.tsx
import { columns } from '@/components/blocks_list/components/desktop/utils'; import Timestamp from '@/components/Timestamp'; import { getShardDisplay } from '@/utils/get_shard_display'; import { BLOCK_DETAILS } from '@/utils/go_to_page'; import Table from '@mui/material/Table'; import TableBody from '@mui/material/Tabl...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/blocks_list/components/desktop/utils.tsx
apps/web-multiversx/src/components/blocks_list/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'block', width: 15, }, { key: 'shard', width: 15, }, { key: 'hash', width: 30, }, { key: 'txs', width: 25, align: 'right', }, { ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/avatar_name/index.tsx
apps/web-multiversx/src/components/avatar_name/index.tsx
import Avatar from '@/components/avatar'; import useStyles from '@/components/avatar_name/styles'; import { ACCOUNT_DETAILS } from '@/utils/go_to_page'; import Link from 'next/link'; import { FC } from 'react'; import { AvatarNameProps } from '@/components/avatar_name/types'; const AvatarName: FC<AvatarNameProps> = ({...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/pagination/index.tsx
apps/web-multiversx/src/components/pagination/index.tsx
import TablePagination from '@mui/material/TablePagination'; import TablePaginationActions from '@mui/material/TablePagination/TablePaginationActions'; import useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numeral'; import { ComponentProps, FC, MouseEvent, useCallback } from 'react'; import us...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/pagination/components/actions/index.test.tsx
apps/web-multiversx/src/components/pagination/components/actions/index.test.tsx
import renderer from 'react-test-renderer'; import Actions from '@/components/pagination/components/actions'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@mui/material/IconButton', () => (props: object) => <div id="ico...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/pagination/components/actions/hooks.ts
apps/web-multiversx/src/components/pagination/components/actions/hooks.ts
import { SelectChangeEvent } from '@mui/material'; import { MouseEvent, useCallback } from 'react'; type TablePaginationActionsParams = { className?: string; // backIconButtonProps?: any; count: number; // nextIconButtonProps?: any; onPageChange: (event: MouseEvent<HTMLButtonElement> | null, page: number) =>...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/transactions_list/index.tsx
apps/web-multiversx/src/components/transactions_list/index.tsx
import NoData from '@/components/no_data'; import Desktop from '@/components/transactions_list/components/desktop'; import Mobile from '@/components/transactions_list/components/mobile'; import { useDisplayStyles } from '@/styles/useSharedStyles'; import { FC } from 'react'; const TransactionsList: FC<{ items: Transac...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/transactions_list/components/index.ts
apps/web-multiversx/src/components/transactions_list/components/index.ts
export { default as Desktop } from '@/components/transactions_list/components/desktop'; export { default as Mobile } from '@/components/transactions_list/components/mobile'; export { default as Shard } from '@/components/transactions_list/components/shard';
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/transactions_list/components/mobile/index.tsx
apps/web-multiversx/src/components/transactions_list/components/mobile/index.tsx
import AvatarName from '@/components/avatar_name'; import Result from '@/components/result'; import Timestamp from '@/components/Timestamp'; import useStyles from '@/components/transactions_list/components/mobile/styles'; import Shard from '@/components/transactions_list/components/shard'; import { getMiddleEllipsis } ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/transactions_list/components/mobile/styles.ts
apps/web-multiversx/src/components/transactions_list/components/mobile/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { margin: theme.spacing(2, 0), }, item: { marginBottom: theme.spacing(2), '& .label': { marginBottom: theme.spacing(1), color: theme.palette.custom.fonts.fontThree, }, '& p.value': { ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/transactions_list/components/desktop/index.tsx
apps/web-multiversx/src/components/transactions_list/components/desktop/index.tsx
import AvatarName from '@/components/avatar_name'; import Result from '@/components/result'; import Timestamp from '@/components/Timestamp'; import useStyles from '@/components/transactions_list/components/desktop/styles'; import { columns } from '@/components/transactions_list/components/desktop/utils'; import Shard f...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/transactions_list/components/desktop/utils.tsx
apps/web-multiversx/src/components/transactions_list/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'hash', width: 20, }, { key: 'shard', width: 16, }, { key: 'from', width: 22, }, { key: 'to', width: 22, }, { key: 'status', wid...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/transactions_list/components/desktop/styles.ts
apps/web-multiversx/src/components/transactions_list/components/desktop/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()(() => ({ root: { '& .MuiTableCell-root': { whiteSpace: 'nowrap', }, }, })); export default useStyles;
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/transactions_list/components/shard/index.tsx
apps/web-multiversx/src/components/transactions_list/components/shard/index.tsx
import ArrowForwardIcon from '@mui/icons-material/ArrowForward'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; import { getShardDisplay } from '@/utils/get_shard_display'; import useStyles from '@/components/transactions_list/components/shard/styles'; const Shard: FC<{ to: numb...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/transactions_list/components/shard/styles.ts
apps/web-multiversx/src/components/transactions_list/components/shard/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { display: 'flex', alignItems: 'center', }, icon: { '&.MuiSvgIcon-root': { width: '16px', height: '16px', margin: theme.spacing(0, 1), }, }, })); export default useStyles;
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/single_block_mobile/index.test.tsx
apps/web-multiversx/src/components/single_block_mobile/index.test.tsx
import renderer from 'react-test-renderer'; import SingleSlotMobile from '@/components/single_block_mobile'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // unit tests // ================================== describe('component: SingleSlotMobile', () => { it('matches snapshot'...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/single_block_mobile/index.tsx
apps/web-multiversx/src/components/single_block_mobile/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; import type { SingleBlockMobileType } from '@/components/single_block_mobile/types'; import useStyles from '@/components/single_block_mobile/styles'; const SingleBlockMobile: FC<Sin...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/single_block_mobile/types.ts
apps/web-multiversx/src/components/single_block_mobile/types.ts
import { ReactNode } from 'react'; export interface SingleBlockMobileType { block: ReactNode; shard?: ReactNode; hash: ReactNode; txs: ReactNode; time: ReactNode; }
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/no_data/index.tsx
apps/web-multiversx/src/components/no_data/index.tsx
import Typography from '@mui/material/Typography'; import FaceIcon from '@mui/icons-material/Face'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; import useStyles from '@/components/no_data/styles'; const NoData: FC<ComponentDefault> = ({ className }) => { const { classes, cx...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/no_data/styles.ts
apps/web-multiversx/src/components/no_data/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { flex: 1, display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '150px', '& .MuiTypography-body1': { color: theme.palette.divider, }, '& .MuiSvgIcon-root': { ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/components/name/index.tsx
apps/web-multiversx/src/components/name/index.tsx
import Avatar from '@/components/avatar'; import useStyles from '@/components/name/styles'; import { ACCOUNT_DETAILS } from '@/utils/go_to_page'; import Link from 'next/link'; import { FC } from 'react'; import { AvatarNameProps } from '@/components/avatar_name/types'; const AvatarName: FC<AvatarNameProps> = ({ clas...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/utils/bech32.ts
apps/web-multiversx/src/utils/bech32.ts
import { bech32 } from 'bech32'; /** * Util that converts a hex in to bech32 * @param address address * @param prefix chain address prefix * @returns bech32 */ export const hexToBech32 = (address: string, prefix: string) => { const addressBuffer = Buffer.from(address, 'hex'); return bech32.encode(prefix, bech...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/utils/format_bytes.ts
apps/web-multiversx/src/utils/format_bytes.ts
/* eslint-disable */ export const formatBytes = (bytes: number, decimals = 2) => { if (bytes === 0) return '0 Bytes'; const k = 1024; const dm = decimals < 0 ? 0 : decimals; const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; const i = Math.floor(Math.log(bytes) / Math.log(k)); retur...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/utils/get_shard_display.ts
apps/web-multiversx/src/utils/get_shard_display.ts
export const getShardDisplay = (shard: number): { key: string; num: number | null } => { if (shard === 4294967295) { return { key: 'metachain', num: null, }; } return { key: 'shardNumber', num: shard, }; };
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/utils/base64.ts
apps/web-multiversx/src/utils/base64.ts
export const decodeBase64 = (base64Str: string) => { const buff = Buffer.from(base64Str, 'base64'); const str = buff.toString('utf-8'); return str; };
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/utils/index.ts
apps/web-multiversx/src/utils/index.ts
export { a11yProps } from '@/utils/a11yProps'; export { convertMsgType } from '@/utils/convert_msg_type'; export { default as dayjs } from '@/utils/dayjs'; export { formatNumber, formatToken, formatTokenByExponent, removeEndingZeros, } from '@/utils/format_token'; export { getDenom } from '@/utils/get_denom'; e...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/utils/get_denom.ts
apps/web-multiversx/src/utils/get_denom.ts
import chainConfig from '@/chainConfig'; const { primaryTokenUnit } = chainConfig(); /** * Helper Function to get Denom from a list * @param denom The denom you wish to convert to * @param value The value in base denom value */ export const getDenom = (list: MsgCoin[], denom = primaryTokenUnit): MsgCoin => { co...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/utils/go_to_page/index.ts
apps/web-multiversx/src/utils/go_to_page/index.ts
export { HOME, BLOCKS, BLOCK_DETAILS, VALIDATOR_DETAILS, VALIDATORS, TRANSACTIONS, TRANSACTION_DETAILS, ACCOUNT_DETAILS, } from 'ui/utils/go_to_page'; export const MINIBLOCK_DETAILS = (hash: string) => `/miniblocks/${hash}`; export const NODE_DETAILS = (hash: string) => `/nodes/${hash}`; export const TO...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/api/index.ts
apps/web-multiversx/src/api/index.ts
// ================================== // DEFAULTS // ================================== export const BASE_URL = 'https://api.multiversx.com'; export const POLLING_INTERVAL = 15000; // ================================== // APIS // ================================== export const LATEST_BLOCK_HEIGHT = `${BASE_URL}/blocks...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/recoil/market/atom.ts
apps/web-multiversx/src/recoil/market/atom.ts
import { atom } from 'recoil'; import type { AtomState } from '@/recoil/market/types'; const initialState: AtomState = { marketCap: 0, price: 0, supply: 0, apr: 0, }; export const atomState = atom<AtomState>({ key: 'multiversx/market', default: initialState, });
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/recoil/market/types.ts
apps/web-multiversx/src/recoil/market/types.ts
export interface AtomState { marketCap: number; price: number; supply: number; apr: number; }
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/recoil/market/selectors.ts
apps/web-multiversx/src/recoil/market/selectors.ts
import { DefaultValue, ReadOnlySelectorOptions, selector } from 'recoil'; import { atomState } from '@/recoil/market/atom'; import type { AtomState } from '@/recoil/market/types'; import { mergeStateChange } from '@/utils/merge_state_change'; const getMarket: ReadOnlySelectorOptions<AtomState>['get'] = ({ get }): Atom...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/recoil/market/hooks.ts
apps/web-multiversx/src/recoil/market/hooks.ts
import axios from 'axios'; import { useEffect } from 'react'; import { SetterOrUpdater, useRecoilState } from 'recoil'; import { ECONOMICS } from '@/api'; import { writeMarket } from '@/recoil/market/selectors'; import type { AtomState } from '@/recoil/market/types'; export const useMarketRecoil = () => { const [_ma...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/app/index.test.tsx
apps/web-multiversx/src/screens/app/index.test.tsx
import type { Router } from 'next/router'; import renderer from 'react-test-renderer'; import App from '@/screens/app'; // ================================== // unit tests // ================================== describe('screen: _app', () => { it('matches snapshot', () => { const component = renderer.create( ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/app/index.tsx
apps/web-multiversx/src/screens/app/index.tsx
import chainConfig from '@/chainConfig'; import useApollo from '@/graphql/useApollo'; import { useWindowOrigin } from '@/hooks/use_window'; import Main, { MainProps } from '@/screens/app/components/main'; import { useApp } from '@/screens/app/hooks'; import { ADDITIONAL_LINK_TAGS_SEO, ADDITIONAL_META_TAGS, OPEN_G...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/app/components/main/index.tsx
apps/web-multiversx/src/screens/app/components/main/index.tsx
import CssBaseline from '@mui/material/CssBaseline'; import { ThemeProvider } from '@mui/material/styles'; import { AppProps } from 'next/app'; import { ToastContainer } from 'react-toastify'; // import { useSettingsRecoil } from '@/recoil/settings'; import useBigDipperNetworks from '@/hooks/useBigDipperNetworks'; impo...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/app/components/main/hooks.ts
apps/web-multiversx/src/screens/app/components/main/hooks.ts
import { createTheme } from '@mui/material/styles'; import { useRecoilValue } from 'recoil'; import { getThemeTemplate, readTheme } from '@/recoil/settings'; import useShallowMemo from '@/hooks/useShallowMemo'; export const useTheme = (fontFamily: string) => { const theme = useRecoilValue(readTheme); const muiThem...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/app/components/inner_app/index.tsx
apps/web-multiversx/src/screens/app/components/inner_app/index.tsx
import { AppProps } from 'next/app'; import { AnimatePresence } from 'framer-motion'; import { useChainHealthCheck } from '@/screens/app/components/inner_app/hooks'; function InnerApp({ Component, pageProps }: AppProps) { useChainHealthCheck(); return ( <AnimatePresence mode="wait" initial={false}> <Comp...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/app/components/inner_app/hooks.ts
apps/web-multiversx/src/screens/app/components/inner_app/hooks.ts
// import { useEffect, useState } from 'react'; // import useAppTranslation from '@/hooks/useAppTranslation'; // import dayjs from '@/utils/dayjs'; // import { toast } from 'react-toastify'; // import * as R from 'ramda'; // const isClient = typeof window === 'object'; export const useChainHealthCheck = () => { //...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/node_details/index.tsx
apps/web-multiversx/src/screens/node_details/index.tsx
import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import React from 'react'; import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import Blocks from '@/screens/node_details/components/blocks'; import Consensus from '@/screens/node...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/node_details/styles.ts
apps/web-multiversx/src/screens/node_details/styles.ts
import { CSSObject } from '@emotion/react'; import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { ...(theme.mixins.layout as CSSObject), '& a': { color: theme.palette.custom.fonts.highlight, }, display: 'grid', gridTemplateRows: 'auto', gridTem...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/node_details/types.ts
apps/web-multiversx/src/screens/node_details/types.ts
export interface ProfileType { name: string; version: string; pubkey: string; validator: string; identity: string; rating: number; } export interface OverviewType { shard: number; type: string; status: string; online: boolean; instances: number; } export interface StatsType { ignoredSignatures...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/node_details/hooks.ts
apps/web-multiversx/src/screens/node_details/hooks.ts
/* eslint-disable @typescript-eslint/no-explicit-any */ import { useCallback, useEffect, useState } from 'react'; import axios from 'axios'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import { ROUNDS, STATS, NODE_DETAILS, IDENTITY, BLOCKS } from '@/api'; import type { NodeDetailsState } from '...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/node_details/components/index.ts
apps/web-multiversx/src/screens/node_details/components/index.ts
import Consensus from '@/screens/node_details/components/consensus'; import Profile from '@/screens/node_details/components/profile'; import Overview from '@/screens/node_details/components/overview'; import Stats from '@/screens/node_details/components/stats'; import Blocks from '@/screens/node_details/components/bloc...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false