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-multiversx/src/screens/node_details/components/stats/index.tsx | apps/web-multiversx/src/screens/node_details/components/stats/index.tsx | import { FC } from 'react';
import numeral from 'numeral';
import useAppTranslation from '@/hooks/useAppTranslation';
import BoxDetails from '@/components/box_details';
import type { StatsType } from '@/screens/node_details/types';
const Stats: FC<{ className?: string; stats: StatsType }> = (props) => {
const { t } ... | 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/blocks/index.tsx | apps/web-multiversx/src/screens/node_details/components/blocks/index.tsx | import { FC } from 'react';
import useAppTranslation from '@/hooks/useAppTranslation';
import Typography from '@mui/material/Typography';
import Box from '@/components/box';
import BlocksList from '@/components/blocks_list';
import NoData from '@/components/no_data';
import useStyles from '@/screens/node_details/compon... | 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/blocks/styles.ts | apps/web-multiversx/src/screens/node_details/components/blocks/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
title: {
marginBottom: theme.spacing(2),
},
}));
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/screens/node_details/components/profile/index.tsx | apps/web-multiversx/src/screens/node_details/components/profile/index.tsx | import Box from '@/components/box';
import { useProfile } from '@/screens/node_details/components/profile/hooks';
import useStyles from '@/screens/node_details/components/profile/styles';
import type { ProfileType } from '@/screens/node_details/types';
import { useDisplayStyles } from '@/styles/useSharedStyles';
import... | 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/profile/styles.ts | apps/web-multiversx/src/screens/node_details/components/profile/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
topWrapper: {
[theme.breakpoints.up('md')]: {
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
},
},
nametag: {
display: 'flex',
flexDirection: 'column',
[theme.br... | 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/profile/hooks.ts | apps/web-multiversx/src/screens/node_details/components/profile/hooks.ts | import copy from 'copy-to-clipboard';
import type { TFunction } from '@/hooks/useAppTranslation';
import { useCallback } from 'react';
import { toast } from 'react-toastify';
export const useProfile = (t: TFunction) => {
const handleCopyToClipboard = useCallback(
(value: string) => {
copy(value);
toa... | 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/consensus/index.tsx | apps/web-multiversx/src/screens/node_details/components/consensus/index.tsx | import { FC } from 'react';
import numeral from 'numeral';
import useAppTranslation from '@/hooks/useAppTranslation';
import Typography from '@mui/material/Typography';
import Tooltip from '@mui/material/Tooltip';
import Box from '@/components/box';
import NoData from '@/components/no_data';
import useStyles from '@/sc... | 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/consensus/styles.ts | apps/web-multiversx/src/screens/node_details/components/consensus/styles.ts | import { makeStyles } from 'tss-react/mui';
import Color from 'color';
const useStyles = makeStyles()((theme) => ({
root: {
display: 'flex',
flexDirection: 'column',
'& .MuiTypography-h2': {
marginBottom: theme.spacing(2),
},
},
blocks: {
display: 'flex',
flexWrap: 'wrap',
margi... | 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/overview/index.tsx | apps/web-multiversx/src/screens/node_details/components/overview/index.tsx | import { FC, isValidElement } from 'react';
import numeral from 'numeral';
import useAppTranslation from '@/hooks/useAppTranslation';
import Typography from '@mui/material/Typography';
import Box from '@/components/box';
import { getShardDisplay } from '@/utils/get_shard_display';
import useStyles 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/components/overview/styles.ts | apps/web-multiversx/src/screens/node_details/components/overview/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
title: {
marginBottom: theme.spacing(2),
},
body: {
display: 'grid',
gridTemplateColumns: 'repeat(1, 1fr)',
gap: theme.spacing(2),
[theme.breakpoints.up('md')]: {
gridTemplateColumns: 'repeat(2, 1fr... | 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/nft_details/index.tsx | apps/web-multiversx/src/screens/nft_details/index.tsx | import React from 'react';
import { NextSeo } from 'next-seo';
import useAppTranslation from '@/hooks/useAppTranslation';
import Layout from '@/components/layout';
import LoadAndExist from '@/components/load_and_exist';
import Overview from '@/screens/nft_details/components/overview';
import { useBlockDetails } 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/nft_details/styles.ts | apps/web-multiversx/src/screens/nft_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 auto 1fr',
... | 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/nft_details/types.ts | apps/web-multiversx/src/screens/nft_details/types.ts | export interface OverviewType {
identifier: string;
collection: string;
name: string;
type: string;
creator: string;
owner: string; // may be null
minted: number;
ticker: string;
}
export interface BlockDetailsState {
loading: boolean;
exists: boolean;
overview: OverviewType;
}
| 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/nft_details/hooks.ts | apps/web-multiversx/src/screens/nft_details/hooks.ts | import { useCallback, useEffect, useState } from 'react';
import axios from 'axios';
import * as R from 'ramda';
import { useRouter } from 'next/router';
import { NFT_DETAILS } from '@/api';
import type { BlockDetailsState } from '@/screens/nft_details/types';
export const useBlockDetails = () => {
const router = 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/screens/nft_details/components/index.ts | apps/web-multiversx/src/screens/nft_details/components/index.ts | import Overview from '@/screens/nft_details/components/overview';
export { Overview };
| 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/nft_details/components/overview/index.tsx | apps/web-multiversx/src/screens/nft_details/components/overview/index.tsx | import { FC } from 'react';
import useAppTranslation from '@/hooks/useAppTranslation';
import { useRecoilValue } from 'recoil';
import BoxDetails from '@/components/box_details';
import AvatarName from '@/components/avatar_name';
import dayjs, { formatDayJs } from '@/utils/dayjs';
import { readDate, readTimeFormat } fr... | 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/token_details/index.tsx | apps/web-multiversx/src/screens/token_details/index.tsx | import React from 'react';
import { NextSeo } from 'next-seo';
import useAppTranslation from '@/hooks/useAppTranslation';
import Layout from '@/components/layout';
import LoadAndExist from '@/components/load_and_exist';
import Profile from '@/screens/token_details/components/profile';
import Overview from '@/screens/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/screens/token_details/styles.ts | apps/web-multiversx/src/screens/token_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/token_details/types.ts | apps/web-multiversx/src/screens/token_details/types.ts | export interface ProfileType {
name: string;
identifier: string;
description: string;
imageUrl: string;
}
export interface OverviewType {
owner: string;
decimals: number;
website: string;
email: string;
}
export interface StatsType {
identifier: string;
accounts: number;
transactions: 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/screens/token_details/hooks.ts | apps/web-multiversx/src/screens/token_details/hooks.ts | import { useCallback, useEffect, useState } from 'react';
import axios from 'axios';
import * as R from 'ramda';
import { useRouter } from 'next/router';
import { TOKEN_DETAILS } from '@/api';
import type { TokenDetailsState } from '@/screens/token_details/types';
export const useTokenDetails = () => {
const router ... | 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/token_details/components/index.ts | apps/web-multiversx/src/screens/token_details/components/index.ts | import Profile from '@/screens/token_details/components/profile';
import Stats from '@/screens/token_details/components/stats';
import Overview from '@/screens/token_details/components/overview';
import Transactions from '@/screens/token_details/components/transactions';
export { Profile, Stats, Overview, Transactions... | 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/token_details/components/stats/index.tsx | apps/web-multiversx/src/screens/token_details/components/stats/index.tsx | import { FC } from 'react';
import numeral from 'numeral';
import useAppTranslation from '@/hooks/useAppTranslation';
import BoxDetails from '@/components/box_details';
import type { StatsType } from '@/screens/token_details/types';
const Stats: FC<{ className?: string; stats: StatsType }> = (props) => {
const { t }... | 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/token_details/components/profile/index.tsx | apps/web-multiversx/src/screens/token_details/components/profile/index.tsx | import Avatar from '@/components/avatar';
import Box from '@/components/box';
import Markdown from '@/components/markdown';
import useStyles from '@/screens/token_details/components/profile/styles';
import type { ProfileType } from '@/screens/token_details/types';
import { useDisplayStyles } from '@/styles/useSharedSty... | 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/token_details/components/profile/styles.ts | apps/web-multiversx/src/screens/token_details/components/profile/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {},
tag: {
'& .MuiTypography-body1': {
lineHeight: 1,
},
},
bio: {
display: 'flex',
'& .bio__header': {
display: 'flex',
alignItems: 'flex-start',
justifyContent: 'flex-start',... | 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/token_details/components/transactions/index.tsx | apps/web-multiversx/src/screens/token_details/components/transactions/index.tsx | import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import { FC } from 'react';
import NoData from '@/components/no_data';
import Pagination from '@/components/pagination';
import TransactionsList from '@/components/transactions_list';
import Box from '@/compone... | 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/token_details/components/transactions/styles.ts | apps/web-multiversx/src/screens/token_details/components/transactions/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
paginate: {
marginTop: theme.spacing(3),
},
}));
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/screens/token_details/components/transactions/types.ts | apps/web-multiversx/src/screens/token_details/components/transactions/types.ts | export interface TransactionState {
page: number;
loading: boolean;
total: number;
items: TransactionType[];
}
| 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/token_details/components/transactions/hooks.ts | apps/web-multiversx/src/screens/token_details/components/transactions/hooks.ts | import { useCallback, useEffect, useState } from 'react';
import * as R from 'ramda';
import axios from 'axios';
import { useRouter } from 'next/router';
import { TRANSACTIONS_COUNT, TRANSACTIONS } from '@/api';
import type { TransactionState } from '@/screens/token_details/components/transactions/types';
export 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/screens/token_details/components/overview/index.tsx | apps/web-multiversx/src/screens/token_details/components/overview/index.tsx | import { FC } from 'react';
import useAppTranslation from '@/hooks/useAppTranslation';
import Typography from '@mui/material/Typography';
import BoxDetails from '@/components/box_details';
import AvatarName from '@/components/avatar_name';
import { getMiddleEllipsis } from '@/utils/get_middle_ellipsis';
import type { O... | 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/validator_details/index.tsx | apps/web-multiversx/src/screens/validator_details/index.tsx | import React from 'react';
import { NextSeo } from 'next-seo';
import useAppTranslation from '@/hooks/useAppTranslation';
import Layout from '@/components/layout';
import LoadAndExist from '@/components/load_and_exist';
import { useValidatorDetails } from '@/screens/validator_details/hooks';
import Profile from '@/scre... | 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/validator_details/styles.ts | apps/web-multiversx/src/screens/validator_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/validator_details/types.ts | apps/web-multiversx/src/screens/validator_details/types.ts | export interface ContractType {
address: string;
locked: TokenUnit;
nodes: number;
apr: number;
commission: number;
delegationCap: TokenUnit;
delegators: number;
}
export interface StakeType {
totalStaked: TokenUnit;
locked: TokenUnit;
stakePercent: number;
stake: TokenUnit;
topUp: TokenUnit;
}... | 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/validator_details/hooks.ts | apps/web-multiversx/src/screens/validator_details/hooks.ts | /* eslint-disable @typescript-eslint/no-explicit-any */
import axios from 'axios';
import Big from 'big.js';
import { useRouter } from 'next/router';
import * as R from 'ramda';
import { useCallback, useEffect, useState } from 'react';
import { IDENTITY, PROVIDERS, PROVIDER_DETAILS, STAKE } from '@/api';
import chainCo... | 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/validator_details/components/index.ts | apps/web-multiversx/src/screens/validator_details/components/index.ts | import Profile from '@/screens/validator_details/components/profile';
import Stake from '@/screens/validator_details/components/stake';
import Overview from '@/screens/validator_details/components/overview';
import ContractDetails from '@/screens/validator_details/components/contract_details';
import Nodes from '@/scre... | 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/validator_details/components/nodes/index.tsx | apps/web-multiversx/src/screens/validator_details/components/nodes/index.tsx | import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import { FC } from 'react';
import Box from '@/components/box';
import Loading from '@/components/loading';
import NoData from '@/components/no_data';
import Pagination from '@/components/pagination';
import { ... | 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/validator_details/components/nodes/styles.ts | apps/web-multiversx/src/screens/validator_details/components/nodes/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {
'& .MuiTypography-h2': {
marginBottom: theme.spacing(2),
},
},
paginate: {
marginTop: theme.spacing(3),
},
}));
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/screens/validator_details/components/nodes/types.ts | apps/web-multiversx/src/screens/validator_details/components/nodes/types.ts | export interface NodeType {
pubkey: string;
name: string;
shard: number;
version: string;
status: string;
online: boolean;
}
export interface NodeState {
page: number;
loading: boolean;
total: number;
items: NodeType[];
}
| 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/validator_details/components/nodes/hooks.ts | apps/web-multiversx/src/screens/validator_details/components/nodes/hooks.ts | import { useCallback, useEffect, useState } from 'react';
import * as R from 'ramda';
import { useRouter } from 'next/router';
import axios from 'axios';
import { waitForAllSettled } from 'recoil';
import { isBech32 } from '@/utils/bech32';
import { POLLING_INTERVAL, NODES_COUNT, NODES } from '@/api';
import { useInter... | 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/validator_details/components/nodes/components/index.ts | apps/web-multiversx/src/screens/validator_details/components/nodes/components/index.ts | import Desktop from '@/screens/validator_details/components/nodes/components/desktop';
import Mobile from '@/screens/validator_details/components/nodes/components/mobile';
export { Desktop, Mobile };
| 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/validator_details/components/nodes/components/mobile/index.tsx | apps/web-multiversx/src/screens/validator_details/components/nodes/components/mobile/index.tsx | import Divider from '@mui/material/Divider';
import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import Link from 'next/link';
import { FC, Fragment } from 'react';
import useStyles from '@/screens/validator_details/components/nodes/components/mobile/styles';
im... | 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/validator_details/components/nodes/components/mobile/styles.ts | apps/web-multiversx/src/screens/validator_details/components/nodes/components/mobile/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
wrapper: {
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/screens/validator_details/components/nodes/components/desktop/index.tsx | apps/web-multiversx/src/screens/validator_details/components/nodes/components/desktop/index.tsx | import Table from '@mui/material/Table';
import TableBody from '@mui/material/TableBody';
import TableCell from '@mui/material/TableCell';
import TableHead from '@mui/material/TableHead';
import TableRow from '@mui/material/TableRow';
import Typography from '@mui/material/Typography';
import useAppTranslation from '@/h... | 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/validator_details/components/nodes/components/desktop/utils.tsx | apps/web-multiversx/src/screens/validator_details/components/nodes/components/desktop/utils.tsx | export const columns: {
key: string;
align?: 'left' | 'center' | 'right' | 'justify' | 'inherit';
width: number;
}[] = [
{
key: 'name',
width: 25,
},
{
key: 'pubkey',
width: 35,
},
{
key: 'shard',
width: 15,
},
{
key: 'version',
width: 15,
},
{
key: 'status',
... | 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/validator_details/components/nodes/components/desktop/styles.ts | apps/web-multiversx/src/screens/validator_details/components/nodes/components/desktop/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {
'& .eligible': {
color: theme.palette.custom.primaryData.four,
},
},
}));
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/screens/validator_details/components/stake/index.tsx | apps/web-multiversx/src/screens/validator_details/components/stake/index.tsx | import { FC } from 'react';
import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import Box from '@/components/box';
import { formatNumber } from '@/utils/format_token';
import useStyles from '@/screens/validator_details/components/stake/styles';
import type { St... | 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/validator_details/components/stake/styles.ts | apps/web-multiversx/src/screens/validator_details/components/stake/styles.ts | import { makeStyles } from 'tss-react/mui';
import Color from 'color';
const useStyles = makeStyles<{ percentage: number }>()((theme, { percentage }) => ({
root: {
'& .MuiTypography-h2': {
marginBottom: theme.spacing(2),
},
},
data: {
display: 'flex',
alignItems: 'flex-end',
'& .primary... | 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/validator_details/components/profile/index.tsx | apps/web-multiversx/src/screens/validator_details/components/profile/index.tsx | import Avatar from '@/components/avatar';
import Box from '@/components/box';
import Markdown from '@/components/markdown';
import useStyles from '@/screens/validator_details/components/profile/styles';
import type { ProfileType } from '@/screens/validator_details/types';
import { useDisplayStyles } from '@/styles/useS... | 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/validator_details/components/transactions/index.tsx | apps/web-multiversx/src/screens/validator_details/components/transactions/index.tsx | import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import { FC } from 'react';
import NoData from '@/components/no_data';
import Pagination from '@/components/pagination';
import TransactionsList from '@/components/transactions_list';
import Box from '@/compone... | 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/validator_details/components/transactions/styles.ts | apps/web-multiversx/src/screens/validator_details/components/transactions/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
paginate: {
marginTop: theme.spacing(3),
},
}));
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/screens/validator_details/components/transactions/types.ts | apps/web-multiversx/src/screens/validator_details/components/transactions/types.ts | export interface TransactionState {
page: number;
loading: boolean;
total: number;
items: TransactionType[];
}
| 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/validator_details/components/transactions/hooks.ts | apps/web-multiversx/src/screens/validator_details/components/transactions/hooks.ts | import { useCallback, useEffect, useState } from 'react';
import * as R from 'ramda';
import axios from 'axios';
import { ACCOUNT_DETAILS_TRANSACTIONS, ACCOUNT_DETAILS_TRANSACTIONS_COUNT } from '@/api';
import type { TransactionState } from '@/screens/validator_details/components/transactions/types';
export const PAGE... | 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/validator_details/components/contract_details/index.tsx | apps/web-multiversx/src/screens/validator_details/components/contract_details/index.tsx | import { FC } from 'react';
import numeral from 'numeral';
import useAppTranslation from '@/hooks/useAppTranslation';
import BoxDetails from '@/components/box_details';
import AvatarName from '@/components/avatar_name';
import { formatNumber } from '@/utils/format_token';
import type { ContractType } from '@/screens/va... | 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/validator_details/components/overview/index.tsx | apps/web-multiversx/src/screens/validator_details/components/overview/index.tsx | import { FC } from 'react';
import useAppTranslation from '@/hooks/useAppTranslation';
import BoxDetails from '@/components/box_details';
import { getMiddleEllipsis } from '@/utils/get_middle_ellipsis';
import type { OverviewType } from '@/screens/validator_details/types';
const Overview: FC<{ className?: string; over... | 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/validators/index.tsx | apps/web-multiversx/src/screens/validators/index.tsx | import React from 'react';
import useAppTranslation from '@/hooks/useAppTranslation';
import { NextSeo } from 'next-seo';
import Layout from '@/components/layout';
import List from '@/screens/validators/components/list';
import useStyles from '@/screens/validators/styles';
const Validators = () => {
const { t } = 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/screens/validators/components/list/index.tsx | apps/web-multiversx/src/screens/validators/components/list/index.tsx | import { FC } from 'react';
import Box from '@/components/box';
import LoadAndExist from '@/components/load_and_exist';
import TabPanel from '@/components/tab_panel';
import Validators from '@/screens/validators/components/list/components/validators';
import Tabs from '@/screens/validators/components/list/components/ta... | 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/validators/components/list/styles.ts | apps/web-multiversx/src/screens/validators/components/list/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {
height: '100%',
},
list: {
minHeight: '500px',
height: '50vh',
[theme.breakpoints.up('lg')]: {
minHeight: '65vh',
},
},
searchWrap: {
display: 'flex',
alignItems: 'center',
j... | 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/validators/components/list/types.ts | apps/web-multiversx/src/screens/validators/components/list/types.ts | import { ReactNode } from 'react';
export interface TabType {
id: number;
key: string;
component?: ReactNode;
}
export interface ValidatorType {
validator: AvatarName;
locked: TokenUnit;
stake: TokenUnit;
stakePercent: number;
commission: number;
nodes: number;
apr: number;
delegators: 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/screens/validators/components/list/hooks.ts | apps/web-multiversx/src/screens/validators/components/list/hooks.ts | import axios from 'axios';
import Big from 'big.js';
import * as R from 'ramda';
import { SyntheticEvent, useCallback, useEffect, useState } from 'react';
import { IDENTITIES, PROVIDERS, STAKE } from '@/api';
import chainConfig from '@/chainConfig';
import type { ValidatorsState } from '@/screens/validators/components/... | 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/validators/components/list/components/index.ts | apps/web-multiversx/src/screens/validators/components/list/components/index.ts | import Validators from '@/screens/validators/components/list/components/validators';
import Tabs from '@/screens/validators/components/list/components/tabs';
export { Validators, Tabs };
| 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/validators/components/list/components/validators/index.tsx | apps/web-multiversx/src/screens/validators/components/list/components/validators/index.tsx | import { FC } from 'react';
import NoData from '@/components/no_data';
import Desktop from '@/screens/validators/components/list/components/validators/components/desktop';
import Mobile from '@/screens/validators/components/list/components/validators/components/mobile';
import { useProviders } from '@/screens/validator... | 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/validators/components/list/components/validators/types.ts | apps/web-multiversx/src/screens/validators/components/list/components/validators/types.ts | export interface ValidatorsState {
sortKey: string;
sortDirection: 'asc' | 'desc';
}
| 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/validators/components/list/components/validators/hooks.ts | apps/web-multiversx/src/screens/validators/components/list/components/validators/hooks.ts | import { useCallback, useState } from 'react';
import * as R from 'ramda';
import type { ValidatorsState } from '@/screens/validators/components/list/components/validators/types';
import type { ValidatorType } from '@/screens/validators/components/list/types';
export const useProviders = (search: string) => {
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/screens/validators/components/list/components/validators/components/index.tsx | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/index.tsx | import Mobile from '@/screens/validators/components/list/components/validators/components/mobile';
import Desktop from '@/screens/validators/components/list/components/validators/components/desktop';
import VotingPower from '@/screens/validators/components/list/components/validators/components/voting_power';
export { ... | 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/validators/components/list/components/validators/components/mobile/index.tsx | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/mobile/index.tsx | import Divider from '@mui/material/Divider';
import numeral from 'numeral';
import { FC, LegacyRef } from 'react';
import AutoSizer from 'react-virtualized-auto-sizer';
import { ListChildComponentProps, VariableSizeList as List } from 'react-window';
import AvatarName from '@/components/avatar_name';
import { useList, ... | 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/validators/components/list/components/validators/components/mobile/styles.ts | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/mobile/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()(() => ({
root: {
height: '100%',
},
}));
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/screens/validators/components/list/components/validators/components/mobile/component/index.ts | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/mobile/component/index.ts | import SingleValidator from '@/screens/validators/components/list/components/validators/components/mobile/component/single_validator';
export { SingleValidator };
| 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/validators/components/list/components/validators/components/mobile/component/single_validator/index.tsx | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/mobile/component/single_validator/index.tsx | import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import { FC, ReactNode } from 'react';
import useStyles from '@/screens/validators/components/list/components/validators/components/mobile/component/single_validator/styles';
type SingleValidatorProps = {
cl... | 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/validators/components/list/components/validators/components/mobile/component/single_validator/styles.ts | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/mobile/component/single_validator/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,
'&.popover': {
... | 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/validators/components/list/components/validators/components/desktop/index.tsx | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/desktop/index.tsx | import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import numeral from 'numeral';
import { ComponentProps, CSSProperties, FC, LegacyRef, ReactNode } from 'react';
import AutoSizer from 'react-virtualized-auto-sizer';
import { VariableSizeGrid as Grid } from 're... | 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/validators/components/list/components/validators/components/desktop/utils.tsx | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/desktop/utils.tsx | import { ReactNode } from 'react';
export const fetchColumns = (): {
key: string;
align?: 'left' | 'center' | 'right' | 'justify' | 'inherit';
width: number;
component?: ReactNode;
sortKey?: string;
sort?: boolean;
}[] => [
{
key: 'idx',
width: 5,
},
{
key: 'validator',
sortKey: 'vali... | 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/validators/components/list/components/validators/components/desktop/styles.ts | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/desktop/styles.ts | import { CSSObject } from '@emotion/react';
import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {
height: '100%',
'& .status': {
'&.one': {
color: theme.palette.custom.tags.one,
},
'&.two': {
color: theme.palette.custom.tags.two,
... | 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/validators/components/list/components/validators/components/voting_power/index.tsx | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/voting_power/index.tsx | import { FC } from 'react';
import Typography from '@mui/material/Typography';
import useStyles from '@/screens/validators/components/list/components/validators/components/voting_power/styles';
type VotingPowerProps = {
className?: string;
percentage: number;
percentDisplay: string;
content: string;
};
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/screens/validators/components/list/components/validators/components/voting_power/styles.ts | apps/web-multiversx/src/screens/validators/components/list/components/validators/components/voting_power/styles.ts | import { makeStyles } from 'tss-react/mui';
import Color from 'color';
const useStyles = makeStyles<{ percentage: number; topVotingPower?: boolean }>()(
(theme, { percentage, topVotingPower = false }) => ({
root: {
'& .MuiTypography-body1': {
color: topVotingPower
? theme.palette.custom.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/screens/validators/components/list/components/tabs/index.tsx | apps/web-multiversx/src/screens/validators/components/list/components/tabs/index.tsx | import { ComponentProps, FC } from 'react';
import useAppTranslation from '@/hooks/useAppTranslation';
import Tabs from '@mui/material/Tabs';
import Tab from '@mui/material/Tab';
import { a11yProps } from '@/utils/a11yProps';
import Search from '@/components/search';
import useStyles from '@/screens/validators/componen... | 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/block_details/index.tsx | apps/web-multiversx/src/screens/block_details/index.tsx | import { NextSeo } from 'next-seo';
import useAppTranslation from '@/hooks/useAppTranslation';
import Layout from '@/components/layout';
import LoadAndExist from '@/components/load_and_exist';
import Consensus from '@/screens/block_details/components/consensus';
import Miniblocks from '@/screens/block_details/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/screens/block_details/styles.ts | apps/web-multiversx/src/screens/block_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 auto 1fr',
... | 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/block_details/types.ts | apps/web-multiversx/src/screens/block_details/types.ts | export interface OverviewType {
block: number; // round
hash: string;
proposer: string;
timestamp: number;
txs: number;
size: number;
shard: number;
gasUsed: number;
gasProvided: number;
gasRefunded: number;
gasPenalized: number;
}
export type MiniBlockType = string;
export type ConsensusType = s... | 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/block_details/hooks.ts | apps/web-multiversx/src/screens/block_details/hooks.ts | import axios from 'axios';
import { useRouter } from 'next/router';
import * as R from 'ramda';
import { useEffect, useState } from 'react';
import type { BlockDetailsState } from '@/screens/block_details/types';
import { BLOCK_DETAILS } from '@/api';
export const useBlockDetails = () => {
const router = useRouter()... | 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/block_details/components/index.ts | apps/web-multiversx/src/screens/block_details/components/index.ts | import Consensus from '@/screens/block_details/components/consensus';
import Miniblocks from '@/screens/block_details/components/miniblocks';
import Overview from '@/screens/block_details/components/overview';
export { Overview, Miniblocks, Consensus };
| 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/block_details/components/miniblocks/index.tsx | apps/web-multiversx/src/screens/block_details/components/miniblocks/index.tsx | import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import Link from 'next/link';
import { FC } from 'react';
import Box from '@/components/box';
import useStyles from '@/screens/block_details/components/miniblocks/styles';
import type { MiniBlockType } 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/block_details/components/miniblocks/styles.ts | apps/web-multiversx/src/screens/block_details/components/miniblocks/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {},
title: {
marginBottom: theme.spacing(2),
},
block: {
wordBreak: 'break-all',
flex: 1,
},
divider: {
margin: theme.spacing(2, 0),
},
listContainer: {
display: 'grid',
gridTemplateCo... | 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/block_details/components/consensus/index.tsx | apps/web-multiversx/src/screens/block_details/components/consensus/index.tsx | import Box from '@/components/box';
import NoData from '@/components/no_data';
import Desktop from '@/screens/block_details/components/consensus/components/desktop';
import Mobile from '@/screens/block_details/components/consensus/components/mobile';
import useStyles from '@/screens/block_details/components/consensus/s... | 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/block_details/components/consensus/styles.ts | apps/web-multiversx/src/screens/block_details/components/consensus/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {
display: 'flex',
flexDirection: 'column',
'& .MuiTypography-h2': {
paddingBottom: theme.spacing(2),
},
},
wrapper: {
flex: 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/screens/block_details/components/consensus/components/index.ts | apps/web-multiversx/src/screens/block_details/components/consensus/components/index.ts | import Desktop from '@/screens/block_details/components/consensus/components/desktop';
import Mobile from '@/screens/block_details/components/consensus/components/mobile';
export { Desktop, Mobile };
| 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/block_details/components/consensus/components/mobile/index.tsx | apps/web-multiversx/src/screens/block_details/components/consensus/components/mobile/index.tsx | import Divider from '@mui/material/Divider';
import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import Link from 'next/link';
import { FC, LegacyRef, ReactNode, useMemo } from 'react';
import AutoSizer from 'react-virtualized-auto-sizer';
import { ListChildComp... | 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/block_details/components/consensus/components/mobile/styles.ts | apps/web-multiversx/src/screens/block_details/components/consensus/components/mobile/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {
height: '100%',
},
itemWrapper: {
margin: theme.spacing(2, 0),
},
item: {
marginBottom: theme.spacing(2),
'& .label': {
marginBottom: theme.spacing(1),
color: theme.palette.custom.font... | 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/block_details/components/consensus/components/desktop/index.tsx | apps/web-multiversx/src/screens/block_details/components/consensus/components/desktop/index.tsx | import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import { FC, LegacyRef, useMemo } from 'react';
import AutoSizer from 'react-virtualized-auto-sizer';
import { VariableSizeGrid as Grid } from 'react-window';
import { useGrid } from '@/hooks/use_react_window';... | 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/block_details/components/consensus/components/desktop/utils.tsx | apps/web-multiversx/src/screens/block_details/components/consensus/components/desktop/utils.tsx | import Link from 'next/link';
import numeral from 'numeral';
import { FC } from 'react';
import type { ConsensusType } from '@/screens/block_details/types';
import { getMiddleEllipsis } from '@/utils/get_middle_ellipsis';
import { NODE_DETAILS } from '@/utils/go_to_page';
export const columns: {
key: string;
align... | 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/block_details/components/consensus/components/desktop/styles.ts | apps/web-multiversx/src/screens/block_details/components/consensus/components/desktop/styles.ts | import { CSSObject } from '@emotion/react';
import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {
height: '100%',
},
cell: {
...(theme.mixins.tableCell as CSSObject),
},
body: {
color: theme.palette.custom.fonts.fontTwo,
},
}));
export default useStyl... | 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/block_details/components/overview/index.tsx | apps/web-multiversx/src/screens/block_details/components/overview/index.tsx | import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import numeral from 'numeral';
import { FC } from 'react';
import { useRecoilValue } from 'recoil';
import BoxDetails from '@/components/box_details';
import { readDate, readTimeFormat } from '@/recoil/settings... | 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/blocks/index.tsx | apps/web-multiversx/src/screens/blocks/index.tsx | import { NextSeo } from 'next-seo';
import useAppTranslation from '@/hooks/useAppTranslation';
import Layout from '@/components/layout';
import List from '@/screens/blocks/components/list';
import useStyles from '@/screens/blocks/styles';
const Blocks = () => {
const { classes } = useStyles();
const { t } = useApp... | 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/blocks/components/index.ts | apps/web-multiversx/src/screens/blocks/components/index.ts | import List from '@/screens/blocks/components/list';
export { List };
| 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/blocks/components/list/index.test.tsx | apps/web-multiversx/src/screens/blocks/components/list/index.test.tsx | import axios from 'axios';
import MockAdapter from 'axios-mock-adapter';
import renderer from 'react-test-renderer';
import { BLOCKS, LATEST_BLOCK_HEIGHT } from '@/api';
import List from '@/screens/blocks/components/list';
import MockTheme from '@/tests/mocks/MockTheme';
import wait from '@/tests/utils/wait';
// =====... | 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/blocks/components/list/index.tsx | apps/web-multiversx/src/screens/blocks/components/list/index.tsx | import BlocksList from '@/components/blocks_list';
import Box from '@/components/box';
import Loading from '@/components/loading';
import NoData from '@/components/no_data';
import Pagination from '@/components/pagination';
import { usePagination } from '@/hooks/use_pagination';
import { PAGE_SIZE, useBlocks } 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/blocks/components/list/styles.ts | apps/web-multiversx/src/screens/blocks/components/list/styles.ts | import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
paginate: {
marginTop: theme.spacing(3),
},
}));
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/screens/blocks/components/list/types.ts | apps/web-multiversx/src/screens/blocks/components/list/types.ts | export interface BlockState {
page: number;
loading: boolean;
total: number;
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/screens/blocks/components/list/hooks.ts | apps/web-multiversx/src/screens/blocks/components/list/hooks.ts | import axios from 'axios';
import * as R from 'ramda';
import { useCallback, useEffect, useState } from 'react';
import { BLOCKS, LATEST_BLOCK_HEIGHT, POLLING_INTERVAL } from '@/api';
import { useInterval } from '@/hooks/use_interval';
import type { BlockState } from '@/screens/blocks/components/list/types';
export 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/screens/home/index.tsx | apps/web-multiversx/src/screens/home/index.tsx | import Layout from '@/components/layout';
import Blocks from '@/screens/home/components/blocks';
import DataBlocks from '@/screens/home/components/data_blocks';
import Epoch from '@/screens/home/components/epoch';
import Price from '@/screens/home/components/price';
import Staking from '@/screens/home/components/stakin... | 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/home/styles.ts | apps/web-multiversx/src/screens/home/styles.ts | import { CSSObject } from '@emotion/react';
import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles()((theme) => ({
root: {
...(theme.mixins.layout as CSSObject),
display: 'grid',
gap: theme.spacing(1),
gridTemplateRows: 'auto auto 1fr',
gridTemplateColumns: 'repeat(1, 1fr)',
... | 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/home/components/index.ts | apps/web-multiversx/src/screens/home/components/index.ts | import DataBlocks from '@/screens/home/components/data_blocks';
import Blocks from '@/screens/home/components/blocks';
import Transactions from '@/screens/home/components/transactions';
import Epoch from '@/screens/home/components/epoch';
import Price from '@/screens/home/components/price';
import Staking from '@/scree... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.