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/transactions/components/list/hooks.ts
apps/web-multiversx/src/screens/transactions/components/list/hooks.ts
import { useCallback, useEffect, useState } from 'react'; import { equals } from 'ramda'; import axios from 'axios'; import { POLLING_INTERVAL, TRANSACTIONS, TRANSACTIONS_COUNT } from '@/api'; import { useInterval } from '@/hooks/use_interval'; import type { TransactionState } from '@/screens/transactions/components/li...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/nfts/index.test.tsx
apps/web-multiversx/src/screens/nfts/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 Blocks from '@/screens/nfts'; // ================================== // unit tests // ================================== jest.mock('@/components/layout', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/nfts/index.tsx
apps/web-multiversx/src/screens/nfts/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/nfts/components/list'; import useStyles from '@/screens/nfts/styles'; const Blocks = () => { const { classes } = useStyles();...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/nfts/styles.ts
apps/web-multiversx/src/screens/nfts/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/nfts/components/index.ts
apps/web-multiversx/src/screens/nfts/components/index.ts
import List from '@/screens/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/nfts/components/list/index.test.tsx
apps/web-multiversx/src/screens/nfts/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 { LATEST_BLOCK_HEIGHT, BLOCKS, NFTS, NFTS_COUNT } from '@/api'; import MockTheme from '@/tests/mocks/MockTheme'; import wait from '@/tests/utils/wait'; import List 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/nfts/components/list/index.tsx
apps/web-multiversx/src/screens/nfts/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/nfts/components/list/styles'; 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/nfts/components/list/styles.ts
apps/web-multiversx/src/screens/nfts/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/nfts/components/list/types.ts
apps/web-multiversx/src/screens/nfts/components/list/types.ts
export interface NFTTypes { identifier: string; name: string; type: string; creator: string; collection: string; } export interface BlockState { page: number; loading: boolean; total: number; items: NFTTypes[]; }
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/nfts/components/list/hooks.ts
apps/web-multiversx/src/screens/nfts/components/list/hooks.ts
import axios from 'axios'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import type { BlockState } from '@/screens/nfts/components/list/types'; import { NFTS, NFTS_COUNT } from '@/api'; export const PAGE_SIZE = 25; type NFTResult = Array<{ identifier?: string; name?: strin...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/nfts/components/list/components/index.ts
apps/web-multiversx/src/screens/nfts/components/list/components/index.ts
import NftsList from '@/screens/nfts/components/list/components/nfts_list'; export { NftsList };
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/nfts/components/list/components/nfts_list/index.tsx
apps/web-multiversx/src/screens/nfts/components/list/components/nfts_list/index.tsx
import NoData from '@/components/no_data'; import Desktop from '@/screens/nfts/components/list/components/nfts_list/components/desktop'; import Mobile from '@/screens/nfts/components/list/components/nfts_list/components/mobile'; import type { NFTTypes } from '@/screens/nfts/components/list/types'; import { useDisplaySt...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/nfts/components/list/components/nfts_list/components/index.ts
apps/web-multiversx/src/screens/nfts/components/list/components/nfts_list/components/index.ts
import Mobile from '@/screens/nfts/components/list/components/nfts_list/components/mobile'; import Desktop from '@/screens/nfts/components/list/components/nfts_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/nfts/components/list/components/nfts_list/components/mobile/index.tsx
apps/web-multiversx/src/screens/nfts/components/list/components/nfts_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 AvatarName from '@/components/avatar_name'; import useStyles from '@/screens/nfts/componen...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/nfts/components/list/components/nfts_list/components/mobile/styles.ts
apps/web-multiversx/src/screens/nfts/components/list/components/nfts_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/nfts/components/list/components/nfts_list/components/desktop/index.tsx
apps/web-multiversx/src/screens/nfts/components/list/components/nfts_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/nfts/components/list/components/nfts_list/components/desktop/utils.tsx
apps/web-multiversx/src/screens/nfts/components/list/components/nfts_list/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'nft', width: 20, }, { key: 'identifier', width: 20, }, { key: 'type', width: 20, }, { key: 'creator', width: 40, }, ];
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/nfts/components/list/components/nfts_list/components/desktop/styles.ts
apps/web-multiversx/src/screens/nfts/components/list/components/nfts_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/transaction_details/index.tsx
apps/web-multiversx/src/screens/transaction_details/index.tsx
import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import React from 'react'; import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import Action from '@/screens/transaction_details/components/action'; import Data 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/transaction_details/styles.ts
apps/web-multiversx/src/screens/transaction_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/transaction_details/types.ts
apps/web-multiversx/src/screens/transaction_details/types.ts
export interface OverviewType { hash: string; fromShard: number; toShard: number; from: string; to: string; timestamp: number; status: string; miniblockHash: string; gasUsed: number; gasLimit: number; gasPrice: TokenUnit; price: number; } export type DataType = string; export interface ActionT...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/transaction_details/hooks.ts
apps/web-multiversx/src/screens/transaction_details/hooks.ts
import axios from 'axios'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import { TRANSACTION_DETAILS } from '@/api'; import chainConfig from '@/chainConfig'; import type { ActionType, TransactionDetailsState } from '@/screens/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-multiversx/src/screens/transaction_details/components/index.ts
apps/web-multiversx/src/screens/transaction_details/components/index.ts
import Overview from '@/screens/transaction_details/components/overview'; import Data from '@/screens/transaction_details/components/data'; import Action from '@/screens/transaction_details/components/action'; import CodeBlock from '@/screens/transaction_details/components/code_block'; import Operations 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/transaction_details/components/action/index.tsx
apps/web-multiversx/src/screens/transaction_details/components/action/index.tsx
import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; import BoxDetails from '@/components/box_details'; import useStyles from '@/screens/transaction_details/components/action/styles'; import type { ActionType } from '@/screens/transaction_details/types'; const Action: FC<ActionType & ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/transaction_details/components/action/styles.ts
apps/web-multiversx/src/screens/transaction_details/components/action/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ description: { alignItems: 'flex-start', '& .label': { marginRight: theme.spacing(2), }, '& .detail': { wordBreak: 'break-all', }, }, })); 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/transaction_details/components/operations/index.tsx
apps/web-multiversx/src/screens/transaction_details/components/operations/index.tsx
import Box from '@/components/box'; import NoData from '@/components/no_data'; import Desktop from '@/screens/transaction_details/components/operations/components/desktop'; import Mobile from '@/screens/transaction_details/components/operations/components/mobile'; import useStyles from '@/screens/transaction_details/co...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/transaction_details/components/operations/styles.ts
apps/web-multiversx/src/screens/transaction_details/components/operations/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { overflow: 'auto', }, title: { marginBottom: theme.spacing(2), }, })); export default useStyles;
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/transaction_details/components/operations/components/index.ts
apps/web-multiversx/src/screens/transaction_details/components/operations/components/index.ts
import Mobile from '@/screens/transaction_details/components/operations/components/mobile'; import Desktop from '@/screens/transaction_details/components/operations/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/transaction_details/components/operations/components/mobile/index.tsx
apps/web-multiversx/src/screens/transaction_details/components/operations/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 AvatarName from '@/components/avatar_name'; import useStyles from '@/screens/transaction_d...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/transaction_details/components/operations/components/mobile/styles.ts
apps/web-multiversx/src/screens/transaction_details/components/operations/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/transaction_details/components/operations/components/desktop/index.tsx
apps/web-multiversx/src/screens/transaction_details/components/operations/components/desktop/index.tsx
import Table from '@mui/material/Table'; import TableBody from '@mui/material/TableBody'; import TableCell from '@mui/material/TableCell'; import TableHead from '@mui/material/TableHead'; import TableRow from '@mui/material/TableRow'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/h...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/transaction_details/components/operations/components/desktop/utils.tsx
apps/web-multiversx/src/screens/transaction_details/components/operations/components/desktop/utils.tsx
export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | 'inherit'; width: number; }[] = [ { key: 'action', width: 15, }, { key: 'sender', width: 30, }, { key: 'receiver', width: 30, }, { key: 'value', width: 25, align: 'right', }, ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/transaction_details/components/code_block/index.tsx
apps/web-multiversx/src/screens/transaction_details/components/code_block/index.tsx
import { FC } from 'react'; import useStyles from '@/screens/transaction_details/components/code_block/styles'; const CodeBlock: FC<{ message: string }> = (props) => { const { message } = props; const { classes } = useStyles(); return ( <pre className={classes.root}> <code> {/* {JSON.stringify...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/transaction_details/components/code_block/styles.ts
apps/web-multiversx/src/screens/transaction_details/components/code_block/styles.ts
import { Theme } from '@mui/material'; import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme: Theme) => ({ root: { overflow: 'auto', padding: '1rem', margin: '0', background: theme.palette.background.default, flex: 1, '& code': { whiteSpace: 'pre-wrap', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/transaction_details/components/smart_contract_results/index.tsx
apps/web-multiversx/src/screens/transaction_details/components/smart_contract_results/index.tsx
import AvatarName from '@/components/avatar_name'; import Box from '@/components/box'; import NoData from '@/components/no_data'; import CodeBlock from '@/screens/transaction_details/components/code_block'; import useStyles from '@/screens/transaction_details/components/smart_contract_results/styles'; import type { Res...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/transaction_details/components/smart_contract_results/styles.ts
apps/web-multiversx/src/screens/transaction_details/components/smart_contract_results/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { overflow: 'auto', }, title: { // marginBottom: theme.spacing(2), }, itemWrap: { '&:first-of-type': { marginTop: theme.spacing(2), }, '&:last-child': { marginBottom: theme.spacing(2...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51: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/transaction_details/components/data/index.tsx
apps/web-multiversx/src/screens/transaction_details/components/data/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; import Box from '@/components/box'; import CodeBlock from '@/screens/transaction_details/components/code_block'; import useStyles from '@/screens/transaction_details/components/data/...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/transaction_details/components/data/styles.ts
apps/web-multiversx/src/screens/transaction_details/components/data/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { overflow: 'hidden', }, title: { marginBottom: theme.spacing(2), }, })); export default useStyles;
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-multiversx/src/screens/transaction_details/components/overview/index.tsx
apps/web-multiversx/src/screens/transaction_details/components/overview/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 { useRecoilValue } from 'recoil'; import chainConfig from '@/chainConfig'; import AvatarName from '@/components/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-multiversx/src/screens/transaction_details/components/overview/styles.ts
apps/web-multiversx/src/screens/transaction_details/components/overview/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ shard: { color: theme.palette.custom.fonts.fontFour, marginLeft: theme.spacing(0.5), }, })); 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-assetmantle/jest.setup.ts
apps/web-assetmantle/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-assetmantle/jest.config.ts
apps/web-assetmantle/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-assetmantle/next-env.d.ts
apps/web-assetmantle/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-assetmantle/src/graphql/types/general_types.ts
apps/web-assetmantle/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-assetmantle/src/graphql/general/account_details_documents.ts
apps/web-assetmantle/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-assetmantle/src/graphql/general/validator_details_documents.ts
apps/web-assetmantle/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-assetmantle/src/pages/_error.tsx
apps/web-assetmantle/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-assetmantle/src/pages/_app.tsx
apps/web-assetmantle/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-assetmantle/src/pages/404.tsx
apps/web-assetmantle/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-assetmantle/src/pages/index.tsx
apps/web-assetmantle/src/pages/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Home from '@/screens/home'; import nextI18NextConfig from '../../next-i18next.config'; const HomePage: NextPage = () => <Home />; export const getStaticProps = withGetStaticProps( nextI18NextConfig, 'home', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/[dtag].tsx
apps/web-assetmantle/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-assetmantle/src/pages/_document.tsx
apps/web-assetmantle/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-assetmantle/src/pages/params/index.tsx
apps/web-assetmantle/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
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/server-sitemap.xml/index.tsx
apps/web-assetmantle/src/pages/server-sitemap.xml/index.tsx
import ServerSitemap, { getServerSideProps } from 'ui/pages/server-sitemap.xml'; // This function is called by Next.js before rendering the page. It returns // a list of URLs that should be included in the sitemap. export { getServerSideProps }; // Next.js calls this function to render the page. export default Server...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/validators/[address].tsx
apps/web-assetmantle/src/pages/validators/[address].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import ValidatorDetails from '@/screens/validator_details'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../../next-i18next.config'; const ValidatorDetailsPage: NextPage = () => <ValidatorDetails />; export const getStaticPaths = ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/validators/index.tsx
apps/web-assetmantle/src/pages/validators/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import Validators from '@/screens/validators'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../../next-i18next.config'; const ValidatorsPage: NextPage = () => <Validators />; export const getStaticProps = withGetStaticProps( nex...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/proposals/index.tsx
apps/web-assetmantle/src/pages/proposals/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Tokens from '@/screens/proposals'; import nextI18NextConfig from '../../../next-i18next.config'; const TokensPage: NextPage = () => <Tokens />; export const getStaticProps = withGetStaticProps(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-assetmantle/src/pages/proposals/[id].tsx
apps/web-assetmantle/src/pages/proposals/[id].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import ProposalDetails from '@/screens/proposal_details'; import nextI18NextConfig from '../../../next-i18next.config'; const TokenDetailsPage: NextPage = () => <ProposalDetails />; export const getStaticPaths = () => (...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/blocks/index.tsx
apps/web-assetmantle/src/pages/blocks/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Blocks from '@/screens/blocks'; import nextI18NextConfig from '../../../next-i18next.config'; const BlocksPage: NextPage = () => <Blocks />; export const getStaticProps = withGetStaticProps( nextI18NextConfig, ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/blocks/[height].tsx
apps/web-assetmantle/src/pages/blocks/[height].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import BlockDetails from '@/screens/block_details'; import nextI18NextConfig from '../../../next-i18next.config'; const BlockDetailsPage: NextPage = () => <BlockDetails />; export const getStaticPaths = () => ({ paths: ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/accounts/[address].tsx
apps/web-assetmantle/src/pages/accounts/[address].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import AccountDetails from '@/screens/account_details'; import nextI18NextConfig from '../../../next-i18next.config'; const AccountDetailsPage: NextPage = () => <AccountDetails />; export const getStaticPaths = () => ({...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/transactions/index.tsx
apps/web-assetmantle/src/pages/transactions/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Transactions from '@/screens/transactions'; import nextI18NextConfig from '../../../next-i18next.config'; const TransactionsPage: NextPage = () => <Transactions />; export const getStaticProps = withGetStaticProp...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-assetmantle/src/pages/transactions/[tx].tsx
apps/web-assetmantle/src/pages/transactions/[tx].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import TransactionDetails from '@/screens/transaction_details'; import nextI18NextConfig from '../../../next-i18next.config'; const TransactionDetailsPage: NextPage = () => <TransactionDetails />; export const getStatic...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/jest.setup.ts
apps/web-emoney/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-emoney/jest.config.ts
apps/web-emoney/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-emoney/next-env.d.ts
apps/web-emoney/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-emoney/src/graphql/types/general_types.ts
apps/web-emoney/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-emoney/src/graphql/general/account_details_documents.ts
apps/web-emoney/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-emoney/src/graphql/general/validator_details_documents.ts
apps/web-emoney/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-emoney/src/pages/_error.tsx
apps/web-emoney/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-emoney/src/pages/_app.tsx
apps/web-emoney/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-emoney/src/pages/404.tsx
apps/web-emoney/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-emoney/src/pages/index.tsx
apps/web-emoney/src/pages/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Home from '@/screens/home'; import nextI18NextConfig from '../../next-i18next.config'; const HomePage: NextPage = () => <Home />; export const getStaticProps = withGetStaticProps( nextI18NextConfig, 'home', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/[dtag].tsx
apps/web-emoney/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-emoney/src/pages/_document.tsx
apps/web-emoney/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-emoney/src/pages/params/index.tsx
apps/web-emoney/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
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/server-sitemap.xml/index.tsx
apps/web-emoney/src/pages/server-sitemap.xml/index.tsx
import ServerSitemap, { getServerSideProps } from 'ui/pages/server-sitemap.xml'; // This function is called by Next.js before rendering the page. It returns // a list of URLs that should be included in the sitemap. export { getServerSideProps }; // Next.js calls this function to render the page. export default Server...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/validators/[address].tsx
apps/web-emoney/src/pages/validators/[address].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import ValidatorDetails from '@/screens/validator_details'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../../next-i18next.config'; const ValidatorDetailsPage: NextPage = () => <ValidatorDetails />; export const getStaticPaths = ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/validators/index.tsx
apps/web-emoney/src/pages/validators/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import Validators from '@/screens/validators'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../../next-i18next.config'; const ValidatorsPage: NextPage = () => <Validators />; export const getStaticProps = withGetStaticProps( nex...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/proposals/index.tsx
apps/web-emoney/src/pages/proposals/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Tokens from '@/screens/proposals'; import nextI18NextConfig from '../../../next-i18next.config'; const TokensPage: NextPage = () => <Tokens />; export const getStaticProps = withGetStaticProps(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-emoney/src/pages/proposals/[id].tsx
apps/web-emoney/src/pages/proposals/[id].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import ProposalDetails from '@/screens/proposal_details'; import nextI18NextConfig from '../../../next-i18next.config'; const TokenDetailsPage: NextPage = () => <ProposalDetails />; export const getStaticPaths = () => (...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/blocks/index.tsx
apps/web-emoney/src/pages/blocks/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Blocks from '@/screens/blocks'; import nextI18NextConfig from '../../../next-i18next.config'; const BlocksPage: NextPage = () => <Blocks />; export const getStaticProps = withGetStaticProps( nextI18NextConfig, ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/blocks/[height].tsx
apps/web-emoney/src/pages/blocks/[height].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import BlockDetails from '@/screens/block_details'; import nextI18NextConfig from '../../../next-i18next.config'; const BlockDetailsPage: NextPage = () => <BlockDetails />; export const getStaticPaths = () => ({ paths: ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/accounts/[address].tsx
apps/web-emoney/src/pages/accounts/[address].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import AccountDetails from '@/screens/account_details'; import nextI18NextConfig from '../../../next-i18next.config'; const AccountDetailsPage: NextPage = () => <AccountDetails />; export const getStaticPaths = () => ({...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/transactions/index.tsx
apps/web-emoney/src/pages/transactions/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Transactions from '@/screens/transactions'; import nextI18NextConfig from '../../../next-i18next.config'; const TransactionsPage: NextPage = () => <Transactions />; export const getStaticProps = withGetStaticProp...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/pages/transactions/[tx].tsx
apps/web-emoney/src/pages/transactions/[tx].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import TransactionDetails from '@/screens/transaction_details'; import nextI18NextConfig from '../../../next-i18next.config'; const TransactionDetailsPage: NextPage = () => <TransactionDetails />; export const getStatic...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/nav/components/title_bar/utils.tsx
apps/web-emoney/src/components/nav/components/title_bar/utils.tsx
import Big from 'big.js'; import numeral from 'numeral'; import { type AtomState } from '@/recoil/market'; import { formatNumber } from '@/utils/format_token'; export const formatMarket = (data: AtomState) => { const exludedItems = [null, 0]; const marketCap = exludedItems.includes(data.marketCap) ? 'N/A' ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/nav/components/desktop/index.tsx
apps/web-emoney/src/components/nav/components/desktop/index.tsx
import AppBar from '@mui/material/AppBar'; import ClickAwayListener from '@mui/material/ClickAwayListener'; import Drawer from '@mui/material/Drawer'; import { FC } from 'react'; import { useRecoilValue } from 'recoil'; import BigDipperLogoRed from 'shared-utils/assets/big-dipper-red.svg'; import BigDipperLogoWhite fro...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/msg/utils.tsx
apps/web-emoney/src/components/msg/utils.tsx
import * as COMPONENTS from '@/components/msg'; import Tag from '@/components/tag'; import * as MODELS from '@/models'; import type { Log } from '@/models/msg/types'; import isKeyOf from '@/utils/isKeyOf'; import type { TFunction } from '@/hooks/useAppTranslation'; import * as R from 'ramda'; 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-emoney/src/components/msg/index.ts
apps/web-emoney/src/components/msg/index.ts
// ========================= // msg components // ========================= export { default as CreateIssuer } from '@/components/msg/authority/create_issuer'; export { default as BurnTokens } from '@/components/msg/liquidity_provider/burn_tokens'; export { default as MintTokens } from '@/components/msg/liquidity_provi...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/msg/liquidity_provider/mint_tokens/index.test.tsx
apps/web-emoney/src/components/msg/liquidity_provider/mint_tokens/index.test.tsx
import renderer from 'react-test-renderer'; import MintTokens from '@/components/msg/liquidity_provider/mint_tokens'; import MsgMintTokens from '@/models/msg/liquidity_provider/msg_mint_tokens'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // 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-emoney/src/components/msg/liquidity_provider/mint_tokens/index.tsx
apps/web-emoney/src/components/msg/liquidity_provider/mint_tokens/index.tsx
import Name from '@/components/name'; import MsgMintTokens from '@/models/msg/liquidity_provider/msg_mint_tokens'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import { formatNumber, formatToken } from '@/utils/format_token'; import Typography from '@mui/material/Typography'; import AppTrans from '@/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-emoney/src/components/msg/liquidity_provider/burn_tokens/index.test.tsx
apps/web-emoney/src/components/msg/liquidity_provider/burn_tokens/index.test.tsx
import renderer from 'react-test-renderer'; import BurnTokens from '@/components/msg/liquidity_provider/burn_tokens'; import MsgBurnTokens from '@/models/msg/liquidity_provider/msg_burn_tokens'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // 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-emoney/src/components/msg/liquidity_provider/burn_tokens/index.tsx
apps/web-emoney/src/components/msg/liquidity_provider/burn_tokens/index.tsx
import Name from '@/components/name'; import MsgBurnTokens from '@/models/msg/liquidity_provider/msg_burn_tokens'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import { formatNumber, formatToken } from '@/utils/format_token'; import Typography from '@mui/material/Typography'; import AppTrans from '@/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-emoney/src/components/msg/ibc_transfer/transfer/index.tsx
apps/web-emoney/src/components/msg/ibc_transfer/transfer/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import { MsgTransfer } from '@/models'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import { formatNumber, formatToken } from '@/utils/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-emoney/src/components/msg/market/add_market_order/index.test.tsx
apps/web-emoney/src/components/msg/market/add_market_order/index.test.tsx
import renderer from 'react-test-renderer'; import AddMarketOrder from '@/components/msg/market/add_market_order'; import MsgAddMarketOrder from '@/models/msg/market/msg_add_market_order'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // 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-emoney/src/components/msg/market/add_market_order/index.tsx
apps/web-emoney/src/components/msg/market/add_market_order/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgAddMarketOrder from '@/models/msg/market/msg_add_market_order'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import { formatNumber, ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/msg/market/add_limit_order/index.test.tsx
apps/web-emoney/src/components/msg/market/add_limit_order/index.test.tsx
import renderer from 'react-test-renderer'; import AddLimitOrder from '@/components/msg/market/add_limit_order'; import MsgAddLimitOrder from '@/models/msg/market/msg_add_limit_order'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // 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-emoney/src/components/msg/market/add_limit_order/index.tsx
apps/web-emoney/src/components/msg/market/add_limit_order/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgAddLimitOrder from '@/models/msg/market/msg_add_limit_order'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import { formatNumber, fo...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/msg/market/cancel_replace_limit_order/index.test.tsx
apps/web-emoney/src/components/msg/market/cancel_replace_limit_order/index.test.tsx
import renderer from 'react-test-renderer'; import CancelReplaceLimitOrder from '@/components/msg/market/cancel_replace_limit_order'; import MsgCancelReplaceLimitOrder from '@/models/msg/market/msg_cancel_replace_limit_order'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mo...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false