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-nomic/src/components/transactions_list_details/components/list/index.test.tsx
apps/web-nomic/src/components/transactions_list_details/components/list/index.test.tsx
import renderer from 'react-test-renderer'; import TransactionList from '@/components/transactions_list_details/components/list'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('react-window-infinite-loader', () => ({ 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-nomic/src/components/transactions_list_details/components/list/index.tsx
apps/web-nomic/src/components/transactions_list_details/components/list/index.tsx
import Loading from '@/components/loading'; import SingleTransaction from '@/components/transactions_list_details/components/list/components/single_transaction'; import useStyles from '@/components/transactions_list_details/components/list/styles'; import type { TransactionsListDetailsState } from '@/components/transac...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/components/transactions_list_details/components/list/components/index.ts
apps/web-nomic/src/components/transactions_list_details/components/list/components/index.ts
export { default as SingleTransaction } from '@/components/transactions_list_details/components/list/components/single_transaction';
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/components/transactions_list_details/components/list/components/single_transaction/index.test.tsx
apps/web-nomic/src/components/transactions_list_details/components/list/components/single_transaction/index.test.tsx
import renderer from 'react-test-renderer'; import SingleTransaction from '@/components/transactions_list_details/components/list/components/single_transaction'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // unit tests // ================================== describe('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-nomic/src/components/transactions_list_details/components/list/components/single_transaction/index.tsx
apps/web-nomic/src/components/transactions_list_details/components/list/components/single_transaction/index.tsx
import Divider from '@mui/material/Divider'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC, ReactNode } from 'react'; import useStyles from '@/components/transactions_list_details/components/list/components/single_transaction/styles'; type Sin...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/components/transactions_list/components/mobile/index.tsx
apps/web-nomic/src/components/transactions_list/components/mobile/index.tsx
import Loading from '@/components/loading'; import SingleTransactionMobile from '@/components/single_transaction_mobile'; import Timestamp from '@/components/Timestamp'; import useStyles from '@/components/transactions_list/components/mobile/styles'; import type { TransactionsListState } from '@/components/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-nomic/src/components/transactions_list/components/desktop/index.tsx
apps/web-nomic/src/components/transactions_list/components/desktop/index.tsx
import Loading from '@/components/loading'; import Timestamp from '@/components/Timestamp'; import useStyles from '@/components/transactions_list/components/desktop/styles'; import { columns } from '@/components/transactions_list/components/desktop/utils'; import type { TransactionsListState } from '@/components/transa...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/components/transactions_list/components/desktop/utils.tsx
apps/web-nomic/src/components/transactions_list/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'block', width: 20, }, { key: 'hash', width: 60, }, { key: 'time', align: 'right', width: 20, }, ];
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/components/single_block_mobile/index.test.tsx
apps/web-nomic/src/components/single_block_mobile/index.test.tsx
import renderer from 'react-test-renderer'; import SingleSlotMobile from '@/components/single_block_mobile'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // unit tests // ================================== describe('component: SingleSlotMobile', () => { it('matches snapshot'...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/components/single_block_mobile/index.tsx
apps/web-nomic/src/components/single_block_mobile/index.tsx
import useStyles from '@/components/single_block_mobile/styles'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC, ReactNode } from 'react'; type SingleBlockMobileProps = { className?: string; height: ReactNode; hash: ReactNode; parentHas...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/components/single_transaction_mobile/index.tsx
apps/web-nomic/src/components/single_transaction_mobile/index.tsx
import useStyles from '@/components/single_transaction_mobile/styles'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC, ReactNode } from 'react'; type SingleTransactionMobileProps = { className?: string; block: ReactNode; hash: ReactNode; ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/utils/get_validator_status.ts
apps/web-nomic/src/utils/get_validator_status.ts
/** * Util to get the validator status and theme * @param status changes from Cosmos 0-3 to Nomic boolean * @param jailed boolean * @returns an object with status and theme */ export const getValidatorStatus = (inActiveSet: string, jailed: string, tombstoned: string) => { const results: { status: string; theme: ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/recoil/validators/index.ts
apps/web-nomic/src/recoil/validators/index.ts
import { atomFamilyState } from 'ui/recoil/validators/atom'; import { readValidator, writeValidator } from 'ui/recoil/validators/selectors'; import type { AtomState } from 'ui/recoil/validators/types'; import { useValidatorRecoil, type DataType } from '@/recoil/validators/hooks'; export { type AtomState, atomFamil...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/recoil/validators/hooks.ts
apps/web-nomic/src/recoil/validators/hooks.ts
import { useEffect } from 'react'; import { useRecoilCallback } from 'recoil'; import { atomFamilyState as validatorAtomState } from 'ui/recoil/validators/atom'; import type { AtomState as ValidatorAtomState } from 'ui/recoil/validators/types'; import type { AtomState as ProfileAtomState } from '@/recoil/profiles/types...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/recoil/market/atom.ts
apps/web-nomic/src/recoil/market/atom.ts
import { atom } from 'recoil'; import type { AtomState } from '@/recoil/market/types'; const initialState: AtomState = { price: null, supply: { value: '0', displayDenom: '', baseDenom: '', exponent: 0, }, marketCap: null, inflation: 0, apr: 0, }; export const atomState = atom<AtomState>({ ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/recoil/market/types.ts
apps/web-nomic/src/recoil/market/types.ts
export interface AtomState { price: number | null; supply: TokenUnit; marketCap: number | null; inflation: number; apr: number; }
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/recoil/market/selectors.ts
apps/web-nomic/src/recoil/market/selectors.ts
import { DefaultValue, ReadOnlySelectorOptions, selector } from 'recoil'; import { atomState } from '@/recoil/market/atom'; import type { AtomState } from '@/recoil/market/types'; import { mergeStateChange } from '@/utils/merge_state_change'; const getMarket: ReadOnlySelectorOptions<AtomState>['get'] = ({ get }) => { ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/recoil/market/hooks.ts
apps/web-nomic/src/recoil/market/hooks.ts
import numeral from 'numeral'; import { SetterOrUpdater, useRecoilState } from 'recoil'; import chainConfig from '@/chainConfig'; import { MarketDataQuery, useMarketDataQuery } from '@/graphql/types/general_types'; import { writeMarket } from '@/recoil/market/selectors'; import type { AtomState } from '@/recoil/market/...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validator_details/index.tsx
apps/web-nomic/src/screens/validator_details/index.tsx
import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import DesmosProfile from '@/components/desmos_profile'; import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import Blocks from '@/screens/validator_details/components/blocks'; 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-nomic/src/screens/validator_details/types.ts
apps/web-nomic/src/screens/validator_details/types.ts
export interface OverviewType { validator: string; operatorAddress: string; selfDelegateAddress: string; description: string; website: string; } export interface StatusType { inActiveSet: string; jailed: string; tombstoned: string; commission: number; signedBlockWindow: number; missedBlockCounter...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validator_details/hooks.ts
apps/web-nomic/src/screens/validator_details/hooks.ts
import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import chainConfig from '@/chainConfig'; import { useValidatorDetailsQuery, ValidatorDetailsQuery } from '@/graphql/types/general_types'; import { useDesmosProfile } from '@/hooks/use_desmos_pr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validator_details/components/index.ts
apps/web-nomic/src/screens/validator_details/components/index.ts
import Profile from '@/screens/validator_details/components/profile'; import VotingPower from '@/screens/validator_details/components/voting_power'; import Blocks from '@/screens/validator_details/components/blocks'; import ValidatorOverview from '@/screens/validator_details/components/validator_overview'; export { Pr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validator_details/components/blocks/index.tsx
apps/web-nomic/src/screens/validator_details/components/blocks/index.tsx
import Tooltip from '@mui/material/Tooltip'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numeral'; import { FC } from 'react'; import Loading from '@/components/loading'; import AvatarName from '@/components/avatar_name'; import Box ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validator_details/components/blocks/hooks.ts
apps/web-nomic/src/screens/validator_details/components/blocks/hooks.ts
import { useRouter } from 'next/router'; import { useState } from 'react'; import { LastHundredBlocksSubscription, useLastHundredBlocksSubscription, } from '@/graphql/types/general_types'; const formatLastHundredBlocks = (data: LastHundredBlocksSubscription) => data.block.map((x) => ({ height: x.height, ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validator_details/components/validator_overview/index.tsx
apps/web-nomic/src/screens/validator_details/components/validator_overview/index.tsx
import Box from '@/components/box'; import Tag from '@/components/tag'; import { useAddress } from '@/screens/validator_details/components/validator_overview/hooks'; import useStyles from '@/screens/validator_details/components/validator_overview/styles'; import type { OverviewType, StatusType } from '@/screens/validat...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validator_details/components/validator_overview/utils.tsx
apps/web-nomic/src/screens/validator_details/components/validator_overview/utils.tsx
import { getValidatorStatus } from '@/utils/get_validator_status'; export const getStatusTheme = getValidatorStatus; export const getCondition = (condition: number, inActiveSet: string) => { let result = 'na'; if (inActiveSet === 'true') { if (condition > 90) { result = 'good'; } else if (condition ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validator_details/components/voting_power/index.tsx
apps/web-nomic/src/screens/validator_details/components/voting_power/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import Link from 'next/link'; import numeral from 'numeral'; import { FC } from 'react'; import { BLOCK_DETAILS } from '@/utils/go_to_page'; import type { VotingPowerType } from '@/screens/validator_details/typ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validators/components/list/index.test.tsx
apps/web-nomic/src/screens/validators/components/list/index.test.tsx
import { ValidatorsDocument } from '@/graphql/types/general_types'; import List from '@/screens/validators/components/list'; import { mockClient } from '@/tests/mocks/mockApollo'; import MockTheme from '@/tests/mocks/MockTheme'; import wait from '@/tests/utils/wait'; import { ApolloProvider } from '@apollo/client'; imp...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validators/components/list/types.ts
apps/web-nomic/src/screens/validators/components/list/types.ts
export interface ValidatorType { validator: string; votingPower: number; votingPowerPercent: number; commission: number; inActiveSet: string; jailed: string; tombstoned: string; topVotingPower?: boolean; // top 34% VP } export interface ValidatorsState { loading: boolean; exists: boolean; tab: nu...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validators/components/list/hooks.ts
apps/web-nomic/src/screens/validators/components/list/hooks.ts
import Big from 'big.js'; import numeral from 'numeral'; import * as R from 'ramda'; import { SyntheticEvent, useCallback, useState } from 'react'; import type { ItemType, ValidatorsState, ValidatorType, } from '@/screens/validators/components/list/types'; import { useValidatorsQuery, ValidatorsQuery } from '@/gr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/validators/components/list/components/mobile/index.tsx
apps/web-nomic/src/screens/validators/components/list/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-nomic/src/screens/validators/components/list/components/mobile/component/single_validator/index.tsx
apps/web-nomic/src/screens/validators/components/list/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/mobile/component/single_validator/styles'; type SingleValidatorProps = { className?: string; 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-nomic/src/screens/validators/components/list/components/desktop/index.tsx
apps/web-nomic/src/screens/validators/components/list/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-nomic/src/screens/validators/components/list/components/desktop/utils.tsx
apps/web-nomic/src/screens/validators/components/list/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-nomic/src/screens/block_details/index.test.tsx
apps/web-nomic/src/screens/block_details/index.test.tsx
import { BlockDetailsDocument } from '@/graphql/types/general_types'; import BlockDetails from '@/screens/block_details'; import { mockClient } from '@/tests/mocks/mockApollo'; import MockTheme from '@/tests/mocks/MockTheme'; import wait from '@/tests/utils/wait'; import { ApolloProvider } from '@apollo/client'; 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-nomic/src/screens/block_details/index.tsx
apps/web-nomic/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 Overview from '@/screens/block_details/components/overview'; import Signatures from '@/screens/block_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-nomic/src/screens/block_details/hooks.ts
apps/web-nomic/src/screens/block_details/hooks.ts
import { useRouter } from 'next/router'; import numeral from 'numeral'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import type { BlockDetailState, OverviewType } from '@/screens/block_details/types'; import { BlockDetailsQuery, useBlockDetailsQuery } from '@/graphql/types/gene...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/blocks/index.tsx
apps/web-nomic/src/screens/blocks/index.tsx
import Box from '@/components/box'; import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import NoData from '@/components/no_data'; import Desktop from '@/screens/blocks/components/desktop'; import Mobile from '@/screens/blocks/components/mobile'; import { 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-nomic/src/screens/blocks/types.ts
apps/web-nomic/src/screens/blocks/types.ts
export interface BlockType { height: number; txs: number; timestamp: string; hash: string; } export interface BlocksState { loading: boolean; exists: boolean; hasNextPage: boolean; isNextPageLoading: boolean; items: BlockType[]; } export type ItemType = Override<BlockType, { proposer: AvatarName }>;...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/blocks/hooks.ts
apps/web-nomic/src/screens/blocks/hooks.ts
import * as R from 'ramda'; import { useCallback, useState } from 'react'; import { BlocksListenerSubscription, useBlocksListenerSubscription, useBlocksQuery, } from '@/graphql/types/general_types'; import type { BlocksState, BlockType } from '@/screens/blocks/types'; // This is a bandaid as it can get extremely...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/blocks/components/mobile/index.test.tsx
apps/web-nomic/src/screens/blocks/components/mobile/index.test.tsx
import Mobile from '@/screens/blocks/components/mobile'; import MockTheme from '@/tests/mocks/MockTheme'; import { ComponentProps } from 'react'; import renderer from 'react-test-renderer'; import AutoSizer from 'react-virtualized-auto-sizer'; // ================================== // mocks // =========================...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/blocks/components/mobile/index.tsx
apps/web-nomic/src/screens/blocks/components/mobile/index.tsx
import Loading from '@/components/loading'; import SingleBlockMobile from '@/components/single_block_mobile'; import Timestamp from '@/components/Timestamp'; import { useList, useListRow } from '@/hooks/use_react_window'; import useStyles from '@/screens/blocks/components/mobile/styles'; import type { BlockType } 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-nomic/src/screens/blocks/components/desktop/index.test.tsx
apps/web-nomic/src/screens/blocks/components/desktop/index.test.tsx
import Desktop from '@/screens/blocks/components/desktop'; import MockTheme from '@/tests/mocks/MockTheme'; import { ComponentProps } from 'react'; import renderer from 'react-test-renderer'; import AutoSizer from 'react-virtualized-auto-sizer'; // ================================== // mocks // =======================...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/blocks/components/desktop/index.tsx
apps/web-nomic/src/screens/blocks/components/desktop/index.tsx
import Loading from '@/components/loading'; import Timestamp from '@/components/Timestamp'; import { useGrid } from '@/hooks/use_react_window'; import useStyles from '@/screens/blocks/components/desktop/styles'; import { columns } from '@/screens/blocks/components/desktop/utils'; import type { BlockType } from '@/scree...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/blocks/components/desktop/utils.tsx
apps/web-nomic/src/screens/blocks/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'height', width: 15, }, { key: 'hash', width: 55, }, { key: 'txs', align: 'right', width: 10, }, { key: 'time', align: 'right', 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-nomic/src/screens/home/index.tsx
apps/web-nomic/src/screens/home/index.tsx
import Layout from '@/components/layout'; import Blocks from '@/screens/home/components/blocks'; import Consensus from '@/screens/home/components/consensus'; import DataBlocks from '@/screens/home/components/data_blocks'; import Hero from '@/screens/home/components/hero'; import Tokenomics from '@/screens/home/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-nomic/src/screens/home/components/blocks/index.test.tsx
apps/web-nomic/src/screens/home/components/blocks/index.test.tsx
import { BlocksListenerDocument } from '@/graphql/types/general_types'; import Blocks from '@/screens/home/components/blocks'; import { mockClient } from '@/tests/mocks/mockApollo'; import MockTheme from '@/tests/mocks/MockTheme'; import { ApolloProvider } from '@apollo/client'; import { MockedProvider } from '@apollo/...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/blocks/index.tsx
apps/web-nomic/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-nomic/src/screens/home/components/blocks/types.ts
apps/web-nomic/src/screens/home/components/blocks/types.ts
export interface BlockType { height: number; txs: number; timestamp: string; hash: string; } export interface BlocksState { loading: boolean; items: BlockType[]; } export type ItemType = Override<BlockType, { proposer: AvatarName }>;
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/blocks/hooks.ts
apps/web-nomic/src/screens/home/components/blocks/hooks.ts
import * as R from 'ramda'; import { useCallback, useState } from 'react'; import { BlocksListenerSubscription, useBlocksListenerSubscription, } from '@/graphql/types/general_types'; import type { BlocksState } from '@/screens/home/components/blocks/types'; const formatBlocks = (data: BlocksListenerSubscription) =...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/blocks/components/mobile/index.test.tsx
apps/web-nomic/src/screens/home/components/blocks/components/mobile/index.test.tsx
import renderer from 'react-test-renderer'; import Mobile from '@/screens/home/components/blocks/components/mobile'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/components/single_block_mobile', () => (props: JSX.Intr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/blocks/components/mobile/index.tsx
apps/web-nomic/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-nomic/src/screens/home/components/blocks/components/desktop/index.test.tsx
apps/web-nomic/src/screens/home/components/blocks/components/desktop/index.test.tsx
import renderer from 'react-test-renderer'; import Desktop from '@/screens/home/components/blocks/components/desktop'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/components/avatar_name', () => (props: JSX.IntrinsicE...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/blocks/components/desktop/index.tsx
apps/web-nomic/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-nomic/src/screens/home/components/blocks/components/desktop/utils.tsx
apps/web-nomic/src/screens/home/components/blocks/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; }[] = [ { key: 'height', }, { key: 'hash', }, { key: 'txs', align: 'right', }, { key: 'time', 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-nomic/src/screens/home/components/hero/index.tsx
apps/web-nomic/src/screens/home/components/hero/index.tsx
import { FC } from 'react'; import Box from '@/components/box'; import OnlineVotingPower from '@/screens/home/components/hero/components/online_voting_power'; import { useHero } from '@/screens/home/components/hero/hooks'; const Hero: FC<ComponentDefault> = (props) => { const { state } = useHero(); let 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-nomic/src/screens/home/components/hero/hooks.ts
apps/web-nomic/src/screens/home/components/hero/hooks.ts
import { useState } from 'react'; // import * as R from 'ramda'; // import chainConfig from '@/chainConfig'; import type { HeroState } from '@/screens/home/components/hero/types'; export const useHero = () => { const [state] = useState<HeroState>({ loading: true, exists: true, tokenPriceHistory: [], })...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/hero/components/online_voting_power/index.tsx
apps/web-nomic/src/screens/home/components/hero/components/online_voting_power/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numeral'; import { FC } from 'react'; import useStyles from '@/screens/home/components/hero/components/online_voting_power/styles'; import { useOnlineVotingPower } from '@/screens/home/comp...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/hero/components/online_voting_power/hooks.ts
apps/web-nomic/src/screens/home/components/hero/components/online_voting_power/hooks.ts
import numeral from 'numeral'; import * as R from 'ramda'; import { useState } from 'react'; import chainConfig from '@/chainConfig'; import { OnlineVotingPowerQuery, useOnlineVotingPowerQuery } from '@/graphql/types/general_types'; import { formatToken } from '@/utils/format_token'; const { votingPowerTokenUnit } = 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-nomic/src/screens/home/components/transactions/types.ts
apps/web-nomic/src/screens/home/components/transactions/types.ts
export interface TransactionType { height: number; hash: string; timestamp: string; } export interface TransactionsState { loading: boolean; 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-nomic/src/screens/home/components/transactions/hooks.ts
apps/web-nomic/src/screens/home/components/transactions/hooks.ts
import * as R from 'ramda'; import { useState } from 'react'; import { TransactionsListenerSubscription, useTransactionsListenerSubscription, } from '@/graphql/types/general_types'; import type { TransactionsState } from '@/screens/home/components/transactions/types'; const formatTransactions = (data: 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-nomic/src/screens/home/components/transactions/components/mobile/index.test.tsx
apps/web-nomic/src/screens/home/components/transactions/components/mobile/index.test.tsx
import renderer from 'react-test-renderer'; import Mobile from '@/screens/home/components/transactions/components/mobile'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/components/single_transaction_mobile', () => (pro...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/transactions/components/mobile/index.tsx
apps/web-nomic/src/screens/home/components/transactions/components/mobile/index.tsx
import SingleTransactionMobile from '@/components/single_transaction_mobile'; import Timestamp from '@/components/Timestamp'; import { getMiddleEllipsis } from '@/utils/get_middle_ellipsis'; import { BLOCK_DETAILS, TRANSACTION_DETAILS } from '@/utils/go_to_page'; import Divider from '@mui/material/Divider'; import Link...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/transactions/components/desktop/index.test.tsx
apps/web-nomic/src/screens/home/components/transactions/components/desktop/index.test.tsx
import renderer from 'react-test-renderer'; import Desktop from '@/screens/home/components/transactions/components/desktop'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/components/result', () => (props: JSX.Intrinsic...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/transactions/components/desktop/index.tsx
apps/web-nomic/src/screens/home/components/transactions/components/desktop/index.tsx
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'; import type { TransactionType } from '@/screens/home/components/transactions/types'; 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-nomic/src/screens/home/components/transactions/components/desktop/utils.tsx
apps/web-nomic/src/screens/home/components/transactions/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'block', width: 15, }, { key: 'hash', width: 30, }, { key: 'time', align: 'right', width: 20, }, ];
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/tokenomics/index.tsx
apps/web-nomic/src/screens/home/components/tokenomics/index.tsx
import chainConfig from '@/chainConfig'; import Box from '@/components/box'; import CustomToolTip, { type CustomToolTipData } from '@/components/custom_tool_tip'; import { useTokenomics } from '@/screens/home/components/tokenomics/hooks'; import useStyles from '@/screens/home/components/tokenomics/styles'; import Typog...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/home/components/tokenomics/hooks.ts
apps/web-nomic/src/screens/home/components/tokenomics/hooks.ts
import numeral from 'numeral'; import * as R from 'ramda'; import { useState } from 'react'; import { TokenomicsQuery, useTokenomicsQuery } from '@/graphql/types/general_types'; import { StakingParams } from '@/models'; import { formatToken } from '@/utils/format_token'; type TokenomicsState = { bonded: number; un...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/index.tsx
apps/web-nomic/src/screens/account_details/index.tsx
import React from 'react'; import useAppTranslation from '@/hooks/useAppTranslation'; import { NextSeo } from 'next-seo'; import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import DesmosProfile from '@/components/desmos_profile'; import Overview from '@/screens/account_det...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/utils.tsx
apps/web-nomic/src/screens/account_details/utils.tsx
import { useEffect, useMemo } from 'react'; import { useAccountBalancesQuery, // useAccountWithdrawalAddressQuery, useAccountDelegationBalanceQuery, } from '@/graphql/types/general_types'; export const useAvailableBalances = (address?: string) => { const defaultReturnValue = useMemo( () => ({ account...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/types.ts
apps/web-nomic/src/screens/account_details/types.ts
export interface OverviewType { address: string; withdrawalAddress: string; } export interface BalanceType { available: TokenUnit; delegate: TokenUnit; total: TokenUnit; } export interface OtherTokenType { denom: string; available: TokenUnit; reward: TokenUnit; commission: TokenUnit; } export inter...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/hooks.ts
apps/web-nomic/src/screens/account_details/hooks.ts
import Big from 'big.js'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import chainConfig from '@/chainConfig'; import { useDesmosProfile } from '@/hooks/use_desmos_profile'; import type { AccountDetailState, BalanceType, OtherToken...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/components/index.ts
apps/web-nomic/src/screens/account_details/components/index.ts
import Balance from '@/screens/account_details/components/balance'; import OtherTokens from '@/screens/account_details/components/other_tokens'; import Overview from '@/screens/account_details/components/overview'; export { Overview, Balance, OtherTokens };
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/components/other_tokens/index.tsx
apps/web-nomic/src/screens/account_details/components/other_tokens/index.tsx
import Box from '@/components/box'; import Pagination from '@/components/pagination'; import { usePagination } from '@/hooks/use_pagination'; import useShallowMemo from '@/hooks/useShallowMemo'; import Desktop from '@/screens/account_details/components/other_tokens/components/desktop'; import Mobile from '@/screens/acc...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/components/other_tokens/components/mobile/index.tsx
apps/web-nomic/src/screens/account_details/components/other_tokens/components/mobile/index.tsx
import { FC, Fragment } from 'react'; import useAppTranslation from '@/hooks/useAppTranslation'; import Divider from '@mui/material/Divider'; import Typography from '@mui/material/Typography'; import type { OtherTokenType } from '@/screens/account_details/types'; import { formatNumber } from '@/utils/format_token'; imp...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/components/other_tokens/components/desktop/index.tsx
apps/web-nomic/src/screens/account_details/components/other_tokens/components/desktop/index.tsx
import { FC } from 'react'; import useAppTranslation from '@/hooks/useAppTranslation'; import Table from '@mui/material/Table'; import TableHead from '@mui/material/TableHead'; import TableRow from '@mui/material/TableRow'; import TableCell from '@mui/material/TableCell'; import TableBody from '@mui/material/TableBody'...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/components/other_tokens/components/desktop/utils.tsx
apps/web-nomic/src/screens/account_details/components/other_tokens/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'token', width: 25, }, { key: 'available', width: 25, align: 'right', }, ];
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/components/balance/utils.tsx
apps/web-nomic/src/screens/account_details/components/balance/utils.tsx
import { formatNumber } from '@/utils/format_token'; export const formatBalanceData = (data: { available: TokenUnit; delegate: TokenUnit }) => { const balanceChart = [ { key: 'balanceAvailable', display: `${formatNumber( data.available.value, data.available.exponent )} ${data.av...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/account_details/components/overview/index.tsx
apps/web-nomic/src/screens/account_details/components/overview/index.tsx
import Box from '@/components/box'; import { useWindowOrigin } from '@/hooks/use_window'; import { useOverview } from '@/screens/account_details/components/overview/hooks'; import useStyles from '@/screens/account_details/components/overview/styles'; 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-nomic/src/screens/transactions/index.test.tsx
apps/web-nomic/src/screens/transactions/index.test.tsx
import { TransactionsDocument, TransactionsListenerDocument } from '@/graphql/types/general_types'; import Transactions from '@/screens/transactions'; import { mockClient } from '@/tests/mocks/mockApollo'; import MockTheme from '@/tests/mocks/MockTheme'; import wait from '@/tests/utils/wait'; import { ApolloProvider } ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/transactions/index.tsx
apps/web-nomic/src/screens/transactions/index.tsx
import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import React from 'react'; import { useRecoilValue } from 'recoil'; import TransactionsListDetails from '@/components/transactions_list_details'; import TransactionsList from '@/components/transactions_list'; import Layout 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-nomic/src/screens/transactions/hooks.ts
apps/web-nomic/src/screens/transactions/hooks.ts
import * as R from 'ramda'; import { useState } from 'react'; import { TransactionsListenerSubscription, useTransactionsListenerSubscription, useTransactionsQuery, } from '@/graphql/types/general_types'; import type { TransactionsState } from '@/screens/transactions/types'; // This is a bandaid as it can get ext...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/transaction_details/index.tsx
apps/web-nomic/src/screens/transaction_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 Overview from '@/screens/transaction_details/components/overview'; import { useTransactionDetails } from '@/screens/tran...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/transaction_details/types.ts
apps/web-nomic/src/screens/transaction_details/types.ts
export interface OverviewType { hash: string; height: number; timestamp: string; fee: TokenUnit; gas: number; memo: string; } export interface TransactionState { 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-nomic/src/screens/transaction_details/hooks.ts
apps/web-nomic/src/screens/transaction_details/hooks.ts
import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import { TransactionDetailsQuery, useTransactionDetailsQuery } from '@/graphql/types/general_types'; import type { TransactionState } from '@/screens/transaction_details/types'; import { format...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/transaction_details/components/overview/index.test.tsx
apps/web-nomic/src/screens/transaction_details/components/overview/index.test.tsx
import renderer from 'react-test-renderer'; import Overview from '@/screens/transaction_details/components/overview'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/components/box_details', () => (props: JSX.IntrinsicEl...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nomic/src/screens/transaction_details/components/overview/index.tsx
apps/web-nomic/src/screens/transaction_details/components/overview/index.tsx
import useAppTranslation from '@/hooks/useAppTranslation'; import Link from 'next/link'; import numeral from 'numeral'; import { FC } from 'react'; import { useRecoilValue } from 'recoil'; import BoxDetails from '@/components/box_details'; import { readDate, readTimeFormat } from '@/recoil/settings'; import useStyles 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-kyve/jest.setup.ts
apps/web-kyve/jest.setup.ts
import mockApollo from '@/tests/mocks/mockApollo'; import mockChainConfig from '@/tests/mocks/mockChainConfig'; import mockDayJs from '@/tests/mocks/mockDayJs'; import mockDynamicComponent from '@/tests/mocks/mockDynamicComponent'; import mockI18Next from '@/tests/mocks/mockI18Next'; import mockProfiles from '@/tests/m...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/jest.config.ts
apps/web-kyve/jest.config.ts
import configFromPreset from 'jest-presets/jest/node/jest-preset'; import nextJest from 'next/jest'; import { pathsToModuleNameMapper } from 'ts-jest'; import tsconfig from './tsconfig.json'; /* Creating a jest configuration for nextjs. */ const createJestConfig = nextJest({ dir: './', })(configFromPreset); const e...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/next-env.d.ts
apps/web-kyve/next-env.d.ts
/// <reference types="next" /> /// <reference types="next/image-types/global" /> // NOTE: This file should not be edited // see https://nextjs.org/docs/basic-features/typescript for more information.
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/graphql/types/general_types.ts
apps/web-kyve/src/graphql/types/general_types.ts
import { gql } from '@apollo/client'; import * as Apollo from '@apollo/client'; export type Maybe<T> = T | null; export type InputMaybe<T> = Maybe<T>; export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] }; export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
true
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/graphql/general/account_details_documents.ts
apps/web-kyve/src/graphql/general/account_details_documents.ts
export const AccountCommissionDocument = /* GraphQL */ ` query AccountCommission($validatorAddress: String!) { commission: action_validator_commission_amount(address: $validatorAddress) { coins } } `; export const AccountWithdrawalAddressDocument = /* GraphQL */ ` query AccountWithdrawalAddress($ad...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/graphql/general/validator_details_documents.ts
apps/web-kyve/src/graphql/general/validator_details_documents.ts
export const ValidatorDelegationsDocument = /* GraphQL */ ` query ValidatorDelegations( $validatorAddress: String! $offset: Int = 0 $limit: Int = 10 $pagination: Boolean! = true ) { delegations: action_validator_delegations( address: $validatorAddress limit: $limit offset: $off...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/_error.tsx
apps/web-kyve/src/pages/_error.tsx
import type { NextPage } from 'next'; import ErrorPage, { getInitialProps } from 'ui/pages/_error'; const MyError: NextPage = () => <ErrorPage />; MyError.getInitialProps = getInitialProps; export default MyError;
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/_app.tsx
apps/web-kyve/src/pages/_app.tsx
import MyApp from '@/screens/app'; import { appWithTranslation } from 'next-i18next'; import 'react-toastify/dist/ReactToastify.css'; import 'shared-utils/assets/styles/global.css'; import nextI18NextConfig from '../../next-i18next.config'; export default appWithTranslation(MyApp, nextI18NextConfig);
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/404.tsx
apps/web-kyve/src/pages/404.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import NotFound from '@/screens/404'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../next-i18next.config'; const Custom404: NextPage = () => <NotFound />; export const getStaticProps = withGetStaticProps(nextI18NextConfig); expo...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/index.tsx
apps/web-kyve/src/pages/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import Home from '@/screens/home'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../next-i18next.config'; const HomePage: NextPage = () => <Home />; export const getStaticProps = withGetStaticProps( nextI18NextConfig, 'home', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/[dtag].tsx
apps/web-kyve/src/pages/[dtag].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import ProfileDetails from '@/screens/profile_details'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../next-i18next.config'; const ProfileDetailsPage: NextPage = () => <ProfileDetails />; export const getStaticPaths = () => ({ pa...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/_document.tsx
apps/web-kyve/src/pages/_document.tsx
import Document from 'next/document'; import DocumentComponent, { getInitialProps, DocumentComponentProps } from 'ui/pages/_document'; class MyDocument extends Document<DocumentComponentProps> { render() { return <DocumentComponent emotionStyleTags={this.props.emotionStyleTags} />; } } MyDocument.getInitialPr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/params/index.tsx
apps/web-kyve/src/pages/params/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import Params from '@/screens/params'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../../next-i18next.config'; const ParamsPage: NextPage = () => <Params />; export const getStaticProps = withGetStaticProps(nextI18NextConfig, 'pa...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false