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/home/components/epoch/index.tsx
apps/web-multiversx/src/screens/home/components/epoch/index.tsx
import Box from '@/components/box'; import { useEpoch } from '@/screens/home/components/epoch/hooks'; import useStyles from '@/screens/home/components/epoch/styles'; import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import useAppTranslation from '@/hooks/useAppTranslation'...
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/epoch/styles.ts
apps/web-multiversx/src/screens/home/components/epoch/styles.ts
import { makeStyles } from 'tss-react/mui'; import Color from 'color'; const useStyles = makeStyles()((theme) => ({ root: { height: '100%', display: 'flex', justifyContent: 'center', flexDirection: 'column', }, content: { flex: 1, display: 'flex', alignItems: 'center', justifyCont...
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/epoch/types.ts
apps/web-multiversx/src/screens/home/components/epoch/types.ts
export interface EpochState { epoch: number; roundsPassed: number; roundsPerEpoch: 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/home/components/epoch/hooks.ts
apps/web-multiversx/src/screens/home/components/epoch/hooks.ts
import axios from 'axios'; import * as R from 'ramda'; import { useEffect, useState } from 'react'; import type { EpochState } from '@/screens/home/components/epoch/types'; import { STATS } from '@/api'; export const useEpoch = () => { const [state, setState] = useState<EpochState>({ epoch: 0, roundsPassed: ...
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/blocks/index.tsx
apps/web-multiversx/src/screens/home/components/blocks/index.tsx
/* eslint-disable no-nested-ternary */ import Box from '@/components/box'; import Loading from '@/components/loading'; import NoData from '@/components/no_data'; import Desktop from '@/screens/home/components/blocks/components/desktop'; import Mobile from '@/screens/home/components/blocks/components/mobile'; import { u...
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/blocks/types.ts
apps/web-multiversx/src/screens/home/components/blocks/types.ts
export interface BlockType { block: number; // round timestamp: number; txs: number; hash: string; } export interface BlockState { loading: boolean; 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/home/components/blocks/hooks.ts
apps/web-multiversx/src/screens/home/components/blocks/hooks.ts
import { useCallback, useState } from 'react'; import * as R from 'ramda'; import axios from 'axios'; import { POLLING_INTERVAL, BLOCKS } from '@/api'; import { useInterval } from '@/hooks/use_interval'; import type { BlockState } from '@/screens/home/components/blocks/types'; export const PAGE_SIZE = 7; type BlocksR...
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/blocks/components/mobile/index.tsx
apps/web-multiversx/src/screens/home/components/blocks/components/mobile/index.tsx
import SingleBlockMobile from '@/components/single_block_mobile'; import Timestamp from '@/components/Timestamp'; import type { BlockType } from '@/screens/home/components/blocks/types'; import { getMiddleEllipsis } from '@/utils/get_middle_ellipsis'; import { BLOCK_DETAILS } from '@/utils/go_to_page'; import Divider 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/home/components/blocks/components/desktop/index.tsx
apps/web-multiversx/src/screens/home/components/blocks/components/desktop/index.tsx
import Timestamp from '@/components/Timestamp'; import useStyles from '@/screens/home/components/blocks/components/desktop/styles'; import { columns } from '@/screens/home/components/blocks/components/desktop/utils'; import type { BlockType } from '@/screens/home/components/blocks/types'; import { getMiddleEllipsis } 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/home/components/blocks/components/desktop/utils.tsx
apps/web-multiversx/src/screens/home/components/blocks/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'block', width: 20, }, { key: 'hash', width: 25, }, { key: 'txs', align: 'right', width: 10, }, { key: 'time', align: 'right', width...
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/staking/index.tsx
apps/web-multiversx/src/screens/home/components/staking/index.tsx
import Box from '@/components/box'; import CustomToolTip from '@/components/custom_tool_tip'; import { useStaking } from '@/screens/home/components/staking/hooks'; import useStyles from '@/screens/home/components/staking/styles'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/...
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/staking/styles.ts
apps/web-multiversx/src/screens/home/components/staking/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { height: '100%', display: 'flex', justifyContent: 'center', flexDirection: 'column', }, label: { marginBottom: theme.spacing(2), }, data: { display: 'flex', '& .data__item': { 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/screens/home/components/staking/types.ts
apps/web-multiversx/src/screens/home/components/staking/types.ts
export interface StakingState { staked: number; percentStaked: number; circulatingSupply: 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/home/components/staking/hooks.ts
apps/web-multiversx/src/screens/home/components/staking/hooks.ts
import axios from 'axios'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import type { StakingState } from '@/screens/home/components/staking/types'; import { ECONOMICS } from '@/api'; export const useStaking = () => { const [state, setState] = useState<StakingState>({ sta...
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/price/index.tsx
apps/web-multiversx/src/screens/home/components/price/index.tsx
import Box from '@/components/box'; import CustomToolTip from '@/components/custom_tool_tip'; import { usePrice } from '@/screens/home/components/price/hooks'; import useStyles from '@/screens/home/components/price/styles'; import dayjs from '@/utils/dayjs'; import Typography from '@mui/material/Typography'; import Col...
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/price/styles.ts
apps/web-multiversx/src/screens/home/components/price/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: {}, label: { marginBottom: theme.spacing(2), }, chart: { height: '290px', width: '100%', '& .yAxis .recharts-cartesian-axis-tick:first-of-type': { display: 'none', }, }, })); export defau...
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/price/types.ts
apps/web-multiversx/src/screens/home/components/price/types.ts
export interface PriceType { time: string; value: number; } export interface PriceState { items: PriceType[]; }
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/price/hooks.ts
apps/web-multiversx/src/screens/home/components/price/hooks.ts
import axios from 'axios'; import numeral from 'numeral'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import type { PriceState } from '@/screens/home/components/price/types'; import { PRICE_HISTORY } from '@/api'; export const usePrice = () => { const [state, setState] = use...
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/data_blocks/index.tsx
apps/web-multiversx/src/screens/home/components/data_blocks/index.tsx
import useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numeral'; import { FC } from 'react'; import { useRecoilValue } from 'recoil'; import { readMarket } from '@/recoil/market'; import SingleBlock from '@/screens/home/components/data_blocks/components/single_block'; import { useDataBlocks } 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/home/components/data_blocks/types.ts
apps/web-multiversx/src/screens/home/components/data_blocks/types.ts
export interface DataBlockState { blockHeight: number; transactions: number; validators: { total: number; active: 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/home/components/data_blocks/hooks.ts
apps/web-multiversx/src/screens/home/components/data_blocks/hooks.ts
import axios from 'axios'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import { LATEST_BLOCK_HEIGHT, POLLING_INTERVAL, STAKE, TRANSACTIONS_COUNT } from '@/api'; import { useInterval } from '@/hooks/use_interval'; import type { DataBlockState } from '@/screens/home/components/da...
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/data_blocks/components/single_block/index.tsx
apps/web-multiversx/src/screens/home/components/data_blocks/components/single_block/index.tsx
import Typography from '@mui/material/Typography'; import { FC } from 'react'; import useStyles from '@/screens/home/components/data_blocks/components/single_block/styles'; type SingleBlockProps = { className?: string; label: string; value: string; description?: string; }; const SingleBlock: FC<SingleBlockPro...
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/transactions/index.tsx
apps/web-multiversx/src/screens/home/components/transactions/index.tsx
import Box from '@/components/box'; import NoData from '@/components/no_data'; import Desktop from '@/screens/home/components/transactions/components/desktop'; import Mobile from '@/screens/home/components/transactions/components/mobile'; import { useBlocks } from '@/screens/home/components/transactions/hooks'; 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/home/components/transactions/types.ts
apps/web-multiversx/src/screens/home/components/transactions/types.ts
export interface TransactionType { hash: string; from: string; to: string; timestamp: number; status: string; } export interface TransactionState { 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/home/components/transactions/hooks.ts
apps/web-multiversx/src/screens/home/components/transactions/hooks.ts
import axios from 'axios'; import * as R from 'ramda'; import { useCallback, useState } from 'react'; import { POLLING_INTERVAL, TRANSACTIONS } from '@/api'; import { useInterval } from '@/hooks/use_interval'; import type { TransactionState } from '@/screens/home/components/transactions/types'; export const PAGE_SIZE ...
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/transactions/components/index.ts
apps/web-multiversx/src/screens/home/components/transactions/components/index.ts
import Mobile from '@/screens/home/components/transactions/components/mobile'; import Desktop from '@/screens/home/components/transactions/components/desktop'; 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/screens/home/components/transactions/components/mobile/index.tsx
apps/web-multiversx/src/screens/home/components/transactions/components/mobile/index.tsx
import AvatarName from '@/components/avatar_name'; import Result from '@/components/result'; import Timestamp from '@/components/Timestamp'; import useStyles from '@/screens/home/components/transactions/components/mobile/styles'; import type { TransactionType } from '@/screens/home/components/transactions/types'; impor...
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/transactions/components/mobile/styles.ts
apps/web-multiversx/src/screens/home/components/transactions/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/screens/home/components/transactions/components/desktop/index.tsx
apps/web-multiversx/src/screens/home/components/transactions/components/desktop/index.tsx
import AvatarName from '@/components/avatar_name'; import Result from '@/components/result'; import Timestamp from '@/components/Timestamp'; import useStyles from '@/screens/home/components/transactions/components/desktop/styles'; import { columns } from '@/screens/home/components/transactions/components/desktop/utils'...
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/transactions/components/desktop/utils.tsx
apps/web-multiversx/src/screens/home/components/transactions/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'hash', width: 25, }, { key: 'from', width: 20, }, { key: 'to', width: 20, }, { key: 'status', width: 15, }, { key: 'time', widt...
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/miniblock_details/index.tsx
apps/web-multiversx/src/screens/miniblock_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/miniblock_details/components/overview'; import Transactions 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/miniblock_details/styles.ts
apps/web-multiversx/src/screens/miniblock_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/miniblock_details/types.ts
apps/web-multiversx/src/screens/miniblock_details/types.ts
export interface OverviewType { hash: string; receiverBlockHash: string; receiverShard: number; senderBlockHash: string; senderShard: number; timestamp: number; type: 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/miniblock_details/hooks.ts
apps/web-multiversx/src/screens/miniblock_details/hooks.ts
import { useCallback, useEffect, useState } from 'react'; import axios from 'axios'; import * as R from 'ramda'; import { useRouter } from 'next/router'; import { MINIBLOCK_DETAILS } from '@/api'; import type { BlockDetailsState } from '@/screens/miniblock_details/types'; export const useBlockDetails = () => { 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/miniblock_details/components/index.ts
apps/web-multiversx/src/screens/miniblock_details/components/index.ts
import Overview from '@/screens/miniblock_details/components/overview'; import Transactions from '@/screens/miniblock_details/components/transactions'; export { 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/miniblock_details/components/transactions/index.tsx
apps/web-multiversx/src/screens/miniblock_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/miniblock_details/components/transactions/styles.ts
apps/web-multiversx/src/screens/miniblock_details/components/transactions/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { overflow: 'auto', }, 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/miniblock_details/components/transactions/types.ts
apps/web-multiversx/src/screens/miniblock_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/miniblock_details/components/transactions/hooks.ts
apps/web-multiversx/src/screens/miniblock_details/components/transactions/hooks.ts
import axios from 'axios'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import type { TransactionState } from '@/screens/miniblock_details/components/transactions/types'; import { TRANSACTIONS, TRANSACTIONS_COUNT } from '@/api'; export c...
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/miniblock_details/components/overview/index.tsx
apps/web-multiversx/src/screens/miniblock_details/components/overview/index.tsx
import useAppTranslation from '@/hooks/useAppTranslation'; import Link from 'next/link'; import { FC } from 'react'; import { useRecoilValue } from 'recoil'; import BoxDetails from '@/components/box_details'; import { readDate, readTimeFormat } from '@/recoil/settings'; import type { OverviewType } from '@/screens/mini...
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/account_details/index.tsx
apps/web-multiversx/src/screens/account_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 Nfts from '@/screens/account_details/components/nfts'; import Overview from '@/screens/account_details/components/overvi...
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/account_details/styles.ts
apps/web-multiversx/src/screens/account_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/account_details/types.ts
apps/web-multiversx/src/screens/account_details/types.ts
export interface ProfileType { address: string; username: string; } export interface OverviewType { balance: TokenUnit; developerReward: TokenUnit; shard: number; tokenCount: number; } export interface AccountDetailsType { loading: boolean; exists: boolean; profile: ProfileType; overview: 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/account_details/hooks.ts
apps/web-multiversx/src/screens/account_details/hooks.ts
/* eslint-disable @typescript-eslint/no-explicit-any */ import axios from 'axios'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useEffect, useState } from 'react'; import { ACCOUNT_DETAILS, ACCOUNT_DETAILS_TOKEN_COUNT } from '@/api'; import chainConfig from '@/chainConfig'; import type ...
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/account_details/components/index.ts
apps/web-multiversx/src/screens/account_details/components/index.ts
import Profile from '@/screens/account_details/components/profile'; import Transactions from '@/screens/account_details/components/transactions'; import Overview from '@/screens/account_details/components/overview'; import Tokens from '@/screens/account_details/components/tokens'; import Nfts from '@/screens/account_de...
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/account_details/components/profile/index.tsx
apps/web-multiversx/src/screens/account_details/components/profile/index.tsx
import Box from '@/components/box'; import { useOverview } from '@/screens/account_details/components/profile/hooks'; import useStyles from '@/screens/account_details/components/profile/styles'; import type { ProfileType } from '@/screens/account_details/types'; import { useDisplayStyles } from '@/styles/useSharedStyle...
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/account_details/components/profile/styles.ts
apps/web-multiversx/src/screens/account_details/components/profile/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { [theme.breakpoints.up('md')]: { display: 'grid', gridTemplateColumns: 'repeat(2,1fr)', }, }, dialog: { display: 'flex', alignItems: 'center', justifyContent: 'center', flexDirectio...
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/account_details/components/profile/hooks.ts
apps/web-multiversx/src/screens/account_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 useOverview = (t: TFunction) => { const handleCopyToClipboard = useCallback( (value: string) => { copy(value); 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/account_details/components/tokens/index.tsx
apps/web-multiversx/src/screens/account_details/components/tokens/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 Pagination from '@/components/pagination'; import { usePagination } from '@/hooks/use_paginatio...
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/account_details/components/tokens/styles.ts
apps/web-multiversx/src/screens/account_details/components/tokens/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { overflow: 'auto', }, 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/account_details/components/tokens/types.ts
apps/web-multiversx/src/screens/account_details/components/tokens/types.ts
export interface OtherTokenType { identifier: string; name: string; balance: TokenUnit; imageUrl: string; } export interface OtherTokensState { page: number; loading: boolean; total: number; items: OtherTokenType[]; }
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/account_details/components/tokens/hooks.ts
apps/web-multiversx/src/screens/account_details/components/tokens/hooks.ts
import { useCallback, useEffect, useState } from 'react'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import axios from 'axios'; import { formatTokenByExponent } from '@/utils/format_token'; import { ACCOUNT_DETAILS_TOKENS, ACCOUNT_DETAILS_TOKENS_COUNT } from '@/api'; import type { OtherTokensS...
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/account_details/components/tokens/components/index.ts
apps/web-multiversx/src/screens/account_details/components/tokens/components/index.ts
import List from '@/screens/account_details/components/tokens/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/account_details/components/tokens/components/list/index.tsx
apps/web-multiversx/src/screens/account_details/components/tokens/components/list/index.tsx
import { FC } from 'react'; import NoData from '@/components/no_data'; import Desktop from '@/screens/account_details/components/tokens/components/list/components/desktop'; import Mobile from '@/screens/account_details/components/tokens/components/list/components/mobile'; import type { OtherTokenType } from '@/screens/...
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/account_details/components/tokens/components/list/components/index.ts
apps/web-multiversx/src/screens/account_details/components/tokens/components/list/components/index.ts
import Mobile from '@/screens/account_details/components/tokens/components/list/components/mobile'; import Desktop from '@/screens/account_details/components/tokens/components/list/components/desktop'; 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/screens/account_details/components/tokens/components/list/components/mobile/index.tsx
apps/web-multiversx/src/screens/account_details/components/tokens/components/list/components/mobile/index.tsx
import Divider from '@mui/material/Divider'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC, Fragment } from 'react'; import AvatarName from '@/components/avatar_name'; import useStyles from '@/screens/account_details/components/tokens/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/account_details/components/tokens/components/list/components/mobile/styles.ts
apps/web-multiversx/src/screens/account_details/components/tokens/components/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/screens/account_details/components/tokens/components/list/components/desktop/index.tsx
apps/web-multiversx/src/screens/account_details/components/tokens/components/list/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 useAppTranslation from '@/hooks/useAppTranslation'; import { FC } 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-multiversx/src/screens/account_details/components/tokens/components/list/components/desktop/utils.tsx
apps/web-multiversx/src/screens/account_details/components/tokens/components/list/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'token', width: 50, }, { key: 'balance', width: 50, 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/screens/account_details/components/tokens/components/list/components/desktop/styles.ts
apps/web-multiversx/src/screens/account_details/components/tokens/components/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/screens/account_details/components/transactions/index.tsx
apps/web-multiversx/src/screens/account_details/components/transactions/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 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/screens/account_details/components/transactions/styles.ts
apps/web-multiversx/src/screens/account_details/components/transactions/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { overflow: 'auto', }, 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/account_details/components/transactions/types.ts
apps/web-multiversx/src/screens/account_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/account_details/components/transactions/hooks.ts
apps/web-multiversx/src/screens/account_details/components/transactions/hooks.ts
import { useCallback, useEffect, useState } from 'react'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import axios from 'axios'; import { ACCOUNT_DETAILS_TRANSACTIONS, ACCOUNT_DETAILS_TRANSACTIONS_COUNT } from '@/api'; import type { TransactionState } from '@/screens/account_details/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/account_details/components/nfts/index.tsx
apps/web-multiversx/src/screens/account_details/components/nfts/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 Pagination from '@/components/pagination'; import { usePagination } from '@/hooks/use_paginatio...
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/account_details/components/nfts/styles.ts
apps/web-multiversx/src/screens/account_details/components/nfts/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { overflow: 'auto', }, 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/account_details/components/nfts/types.ts
apps/web-multiversx/src/screens/account_details/components/nfts/types.ts
export interface OtherTokenType { name: string; identifier: string; type: string; } export interface OtherTokensState { page: number; loading: boolean; total: number; items: OtherTokenType[]; }
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/account_details/components/nfts/hooks.ts
apps/web-multiversx/src/screens/account_details/components/nfts/hooks.ts
import { useCallback, useEffect, useState } from 'react'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import axios from 'axios'; import { ACCOUNT_DETAILS_NFTS, ACCOUNT_DETAILS_NFTS_COUNT } from '@/api'; import type { OtherTokensState } from '@/screens/account_details/components/nfts/types'; ex...
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/account_details/components/nfts/components/index.ts
apps/web-multiversx/src/screens/account_details/components/nfts/components/index.ts
import List from '@/screens/account_details/components/nfts/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/account_details/components/nfts/components/list/index.tsx
apps/web-multiversx/src/screens/account_details/components/nfts/components/list/index.tsx
import NoData from '@/components/no_data'; import Desktop from '@/screens/account_details/components/nfts/components/list/components/desktop'; import Mobile from '@/screens/account_details/components/nfts/components/list/components/mobile'; import type { OtherTokenType } from '@/screens/account_details/components/nfts/...
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/account_details/components/nfts/components/list/components/index.ts
apps/web-multiversx/src/screens/account_details/components/nfts/components/list/components/index.ts
import Mobile from '@/screens/account_details/components/nfts/components/list/components/mobile'; import Desktop from '@/screens/account_details/components/nfts/components/list/components/desktop'; 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/screens/account_details/components/nfts/components/list/components/mobile/index.tsx
apps/web-multiversx/src/screens/account_details/components/nfts/components/list/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 { NFT_DETAILS } from '@/utils/go_to_page'; import type { OtherTokenType } from '@/screens/...
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/account_details/components/nfts/components/list/components/mobile/styles.ts
apps/web-multiversx/src/screens/account_details/components/nfts/components/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/screens/account_details/components/nfts/components/list/components/desktop/index.tsx
apps/web-multiversx/src/screens/account_details/components/nfts/components/list/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 useAppTranslation from '@/hooks/useAppTranslation'; import Link from 'next/lin...
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/account_details/components/nfts/components/list/components/desktop/utils.tsx
apps/web-multiversx/src/screens/account_details/components/nfts/components/list/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'nft', width: 34, }, { key: 'identifier', width: 33, }, { key: 'type', width: 33, }, ];
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/account_details/components/nfts/components/list/components/desktop/styles.ts
apps/web-multiversx/src/screens/account_details/components/nfts/components/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/screens/account_details/components/overview/index.tsx
apps/web-multiversx/src/screens/account_details/components/overview/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numeral'; import { FC, isValidElement } from 'react'; import Box from '@/components/box'; import useStyles from '@/screens/account_details/components/overview/styles'; import type { Overvie...
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/account_details/components/overview/styles.ts
apps/web-multiversx/src/screens/account_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/tokens/index.tsx
apps/web-multiversx/src/screens/tokens/index.tsx
import React from 'react'; import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import Layout from '@/components/layout'; import List from '@/screens/tokens/components/list'; import useStyles from '@/screens/tokens/styles'; const Tokens = () => { const { classes } = useStyle...
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/tokens/styles.ts
apps/web-multiversx/src/screens/tokens/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, }, }, box: { minHeight: '500px', height: '50vh', ...
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/tokens/components/index.ts
apps/web-multiversx/src/screens/tokens/components/index.ts
import List from '@/screens/tokens/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/tokens/components/list/index.tsx
apps/web-multiversx/src/screens/tokens/components/list/index.tsx
import React from 'react'; import { usePagination } from '@/hooks/use_pagination'; import Pagination from '@/components/pagination'; import NoData from '@/components/no_data'; import Box from '@/components/box'; import Loading from '@/components/loading'; import useStyles from '@/screens/tokens/components/list/styles';...
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/tokens/components/list/styles.ts
apps/web-multiversx/src/screens/tokens/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/tokens/components/list/types.ts
apps/web-multiversx/src/screens/tokens/components/list/types.ts
export interface TokenType { identifier: string; name: string; owner: string; accounts: number; transactions: number; imageUrl: string; } export interface TokenState { page: number; loading: boolean; total: number; items: TokenType[]; }
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/tokens/components/list/hooks.ts
apps/web-multiversx/src/screens/tokens/components/list/hooks.ts
import { useCallback, useEffect, useState } from 'react'; import * as R from 'ramda'; import axios from 'axios'; import { TOKENS, TOKENS_COUNT } from '@/api'; import type { TokenState } from '@/screens/tokens/components/list/types'; export const PAGE_SIZE = 25; type TokensResult = Array<{ identifier?: string; nam...
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/tokens/components/list/components/index.ts
apps/web-multiversx/src/screens/tokens/components/list/components/index.ts
import TokenList from '@/screens/tokens/components/list/components/tokens_list'; export { TokenList };
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/tokens/components/list/components/tokens_list/index.tsx
apps/web-multiversx/src/screens/tokens/components/list/components/tokens_list/index.tsx
import NoData from '@/components/no_data'; import Desktop from '@/screens/tokens/components/list/components/tokens_list/components/desktop'; import Mobile from '@/screens/tokens/components/list/components/tokens_list/components/mobile'; import type { TokenType } from '@/screens/tokens/components/list/types'; import { u...
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/tokens/components/list/components/tokens_list/components/index.ts
apps/web-multiversx/src/screens/tokens/components/list/components/tokens_list/components/index.ts
import Mobile from '@/screens/tokens/components/list/components/tokens_list/components/mobile'; import Desktop from '@/screens/tokens/components/list/components/tokens_list/components/desktop'; 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/screens/tokens/components/list/components/tokens_list/components/mobile/index.tsx
apps/web-multiversx/src/screens/tokens/components/list/components/tokens_list/components/mobile/index.tsx
import { FC, Fragment } from 'react'; import numeral from 'numeral'; import useAppTranslation from '@/hooks/useAppTranslation'; import Divider from '@mui/material/Divider'; import Typography from '@mui/material/Typography'; import { getMiddleEllipsis } from '@/utils/get_middle_ellipsis'; import AvatarName from '@/compo...
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/tokens/components/list/components/tokens_list/components/mobile/styles.ts
apps/web-multiversx/src/screens/tokens/components/list/components/tokens_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/screens/tokens/components/list/components/tokens_list/components/desktop/index.tsx
apps/web-multiversx/src/screens/tokens/components/list/components/tokens_list/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 useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numer...
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/tokens/components/list/components/tokens_list/components/desktop/utils.tsx
apps/web-multiversx/src/screens/tokens/components/list/components/tokens_list/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'token', width: 20, }, { key: 'identifier', width: 20, }, { key: 'owner', width: 20, }, { key: 'transactions', width: 20, 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/screens/tokens/components/list/components/tokens_list/components/desktop/styles.ts
apps/web-multiversx/src/screens/tokens/components/list/components/tokens_list/components/desktop/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()(() => ({ root: { overflow: 'auto', '& .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/screens/transactions/index.test.tsx
apps/web-multiversx/src/screens/transactions/index.test.tsx
import React from 'react'; import renderer from 'react-test-renderer'; import MockTheme from '@/tests/mocks/MockTheme'; import wait from '@/tests/utils/wait'; import Transactions from '@/screens/transactions'; // ================================== // unit tests // ================================== jest.mock('@/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/transactions/index.tsx
apps/web-multiversx/src/screens/transactions/index.tsx
import React from 'react'; import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import Layout from '@/components/layout'; import List from '@/screens/transactions/components/list'; import useStyles from '@/screens/transactions/styles'; const Transactions = () => { const { 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/transactions/components/index.ts
apps/web-multiversx/src/screens/transactions/components/index.ts
export { default as List } from '@/screens/transactions/components/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/transactions/components/list/index.test.tsx
apps/web-multiversx/src/screens/transactions/components/list/index.test.tsx
import React from 'react'; import renderer from 'react-test-renderer'; import axios from 'axios'; import MockAdapter from 'axios-mock-adapter'; import { TRANSACTIONS, TRANSACTIONS_COUNT } from '@/api'; import MockTheme from '@/tests/mocks/MockTheme'; import wait from '@/tests/utils/wait'; import List from '@/screens/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/screens/transactions/components/list/index.tsx
apps/web-multiversx/src/screens/transactions/components/list/index.tsx
import React from 'react'; import NoData from '@/components/no_data'; import Pagination from '@/components/pagination'; import TransactionsList from '@/components/transactions_list'; import Box from '@/components/box'; import Loading from '@/components/loading'; import { usePagination } from '@/hooks/use_pagination'; i...
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/transactions/components/list/styles.ts
apps/web-multiversx/src/screens/transactions/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/transactions/components/list/types.ts
apps/web-multiversx/src/screens/transactions/components/list/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