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-comdex/src/pages/transactions/index.tsx
apps/web-comdex/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-comdex/src/pages/transactions/[tx].tsx
apps/web-comdex/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-comdex/src/components/nav/components/menu_items/utils.tsx
apps/web-comdex/src/components/nav/components/menu_items/utils.tsx
import { BLOCKS, HOME, PARAMS, PROPOSALS, TRANSACTIONS, VALIDATORS, WASM_CONTRACTS, } from '@/utils/go_to_page'; import BlockIcon from 'shared-utils/assets/icon-block.svg'; import HomeIcon from 'shared-utils/assets/icon-home.svg'; import ParamIcon from 'shared-utils/assets/icon-param.svg'; import Proposal...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/utils/go_to_page/index.ts
apps/web-comdex/src/utils/go_to_page/index.ts
import chainConfig from '@/chainConfig'; const { prefix } = chainConfig(); export const HOME = '/'; export const BLOCKS = '/blocks'; export const BLOCK_DETAILS = (slot: string | number): string => `/blocks/${slot}`; export const VALIDATOR_DETAILS = (address: string): string => `/validators/${address}`; export const V...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/utils.ts
apps/web-comdex/src/screens/wasmContracts/utils.ts
import { WasmCodeType, WasmContractType } from '@/screens/wasmContracts/types'; import { Property } from 'csstype'; export const columnsContract: { columnKey: keyof WasmContractType; justifyContent?: Property.JustifyContent; textAlign?: Property.TextAlign; width: number | boolean; widthMobile: number | 'auto...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/index.tsx
apps/web-comdex/src/screens/wasmContracts/index.tsx
import InfiniteList from '@/components/InfiniteList'; import Layout from '@/components/layout'; import ContractHeaderDesktop from '@/screens/wasmContracts/components/ContractHeaderDesktop'; import ContractRowDesktop from '@/screens/wasmContracts/components/ContractRowDesktop'; import ContractRowMobile from '@/screens/w...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/styles.ts
apps/web-comdex/src/screens/wasmContracts/styles.ts
import { CSSObject } from 'tss-react'; import { makeStyles } from 'tss-react/mui'; export const HEIGHT_MOBILE_CODE = 25; export const HEIGHT_MOBILE_CONTRACT = 49; export const HEIGHT_DESKTOP = 7; const useStyles = makeStyles()((theme) => ({ root: { ...(theme.mixins.layout as CSSObject), }, header: { '&&...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/types.ts
apps/web-comdex/src/screens/wasmContracts/types.ts
import { WasmCodeQuery } from '@/graphql/types/general_types'; import { InfiniteQuery } from '@/hooks/useInfiniteQuery/types'; import { ReactNode } from 'react'; import z from 'zod'; /* WASM Contracts */ export interface WasmContractType { contractName: ReactNode; contractTypeName: ReactNode; contractAddress: 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-comdex/src/screens/wasmContracts/hooks.tsx
apps/web-comdex/src/screens/wasmContracts/hooks.tsx
import AvatarName from '@/components/avatar_name'; import Timestamp from '@/components/Timestamp'; import { WasmCodeDocument, WasmCodeQuery } from '@/graphql/types/general_types'; import useInfiniteQuery, { makeSummaryVar } from '@/hooks/useInfiniteQuery'; import useShallowMemo from '@/hooks/useShallowMemo'; import Cod...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/components/CodeInstantiatePermission/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/CodeInstantiatePermission/index.tsx
import { InstantiatePermissionProps, zInstantiatePermission } from '@/screens/wasmContracts/types'; import { FC } from 'react'; import AvatarName from 'ui/src/components/avatar_name'; const CodeInstantiatePermission: FC<InstantiatePermissionProps> = ({ instantiatePermission }) => { const { permission, address, addre...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/components/ContractRowDesktop/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/ContractRowDesktop/index.tsx
import { RowProps } from '@/components/InfiniteList/types'; import { WasmCodeQuery } from '@/graphql/types/general_types'; import { useWasmContractsByOffset } from '@/screens/wasmContracts/hooks'; import useStyles from '@/screens/wasmContracts/styles'; import { WasmCodeQueryVariable, WasmContractType } 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-comdex/src/screens/wasmContracts/components/CodeRowDesktop/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/CodeRowDesktop/index.tsx
import { RowProps } from '@/components/InfiniteList/types'; import { WasmCodeQuery } from '@/graphql/types/general_types'; import { useWasmCodesByOffset } from '@/screens/wasmContracts/hooks'; import useStyles from '@/screens/wasmContracts/styles'; import { WasmCodeQueryVariable, WasmCodeType } from '@/screens/wasmCont...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/components/CodeHeaderDesktop/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/CodeHeaderDesktop/index.tsx
import useStyles from '@/screens/wasmContracts/styles'; import { columnsCode } from '@/screens/wasmContracts/utils'; import Grid2 from '@mui/material/Unstable_Grid2'; import useAppTranslation from '@/hooks/useAppTranslation'; const CodeHeaderDesktop = () => { const { t } = useAppTranslation('wasm_contracts'); cons...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/components/ContractSearchBox/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/ContractSearchBox/index.tsx
import useStyles from '@/screens/wasmContracts/styles'; import { ContractSearchBoxProps } from '@/screens/wasmContracts/types'; import SearchIcon from '@mui/icons-material/Search'; import TextField from '@mui/material/TextField'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; 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-comdex/src/screens/wasmContracts/components/ContractHeaderDesktop/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/ContractHeaderDesktop/index.tsx
import useStyles from '@/screens/wasmContracts/styles'; import { columnsContract } from '@/screens/wasmContracts/utils'; import Grid2 from '@mui/material/Unstable_Grid2'; import useAppTranslation from '@/hooks/useAppTranslation'; const ContractHeaderDesktop = () => { const { t } = useAppTranslation('wasm_contracts')...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/components/ContractName/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/ContractName/index.tsx
import useStyles from '@/screens/wasmContracts/styles'; import { ContractNameProps, zContractName } from '@/screens/wasmContracts/types'; import { WASM_CONTRACTS_DETAILS } from '@/utils/go_to_page'; import Tooltip from '@mui/material/Tooltip'; import Typography from '@mui/material/Typography'; import Link from 'next/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-comdex/src/screens/wasmContracts/components/ContractRowMobile/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/ContractRowMobile/index.tsx
import { RowProps } from '@/components/InfiniteList/types'; import { WasmCodeQuery } from '@/graphql/types/general_types'; import { useWasmContractsByOffset } from '@/screens/wasmContracts/hooks'; import useStyles from '@/screens/wasmContracts/styles'; import { WasmCodeQueryVariable, WasmContractType } 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-comdex/src/screens/wasmContracts/components/ContractTypeName/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/ContractTypeName/index.tsx
import { zContractInfo, ContractTypeNameProps } from '@/screens/wasmContracts/types'; import Tooltip from '@mui/material/Tooltip'; import Link from 'next/link'; import * as R from 'ramda'; import { memo } from 'react'; const predefined = { 'crates.io:cw0': ['CW0: Common Types for specs', 'CW0 Contract'], 'crates.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-comdex/src/screens/wasmContracts/components/CodeId/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/CodeId/index.tsx
import { CodeIdProps } from '@/screens/wasmContracts/types'; import { WASM_CONTRACTS_DETAILS } from '@/utils/go_to_page'; import Link from 'next/link'; import numeral from 'numeral'; import { FC } from 'react'; const CodeId: FC<CodeIdProps> = ({ codeId }) => { if (!codeId) return null; return ( <Link href={WAS...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContracts/components/CodeRowMobile/index.tsx
apps/web-comdex/src/screens/wasmContracts/components/CodeRowMobile/index.tsx
import { RowProps } from '@/components/InfiniteList/types'; import { WasmCodeQuery } from '@/graphql/types/general_types'; import { useWasmCodesByOffset } from '@/screens/wasmContracts/hooks'; import useStyles from '@/screens/wasmContracts/styles'; import { WasmCodeQueryVariable, WasmCodeType } from '@/screens/wasmCont...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContractDetails/index.tsx
apps/web-comdex/src/screens/wasmContractDetails/index.tsx
import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import { useWasmContractDetails } from '@/screens/wasmContractDetails/hooks'; import useStyles from '@/screens/wasmContractDetails/styles'; import useAppTranslation from '@/hooks/useAppTranslation'; import { NextSeo } 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-comdex/src/screens/wasmContractDetails/styles.ts
apps/web-comdex/src/screens/wasmContractDetails/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-comdex/src/screens/wasmContractDetails/types.ts
apps/web-comdex/src/screens/wasmContractDetails/types.ts
import { WasmCodeWithByteCodeQuery } from '@/graphql/types/general_types'; import { BoxProps } from '@mui/material/Box'; import { ReactNode } from 'react'; export interface OverviewProps extends BoxProps { overview: WasmCodeWithByteCodeQuery['wasm_code'][0]['wasm_contracts'][0]; codeId: WasmCodeWithByteCodeQuery['...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContractDetails/hooks.tsx
apps/web-comdex/src/screens/wasmContractDetails/hooks.tsx
import { useWasmCodeWithByteCodeQuery, WasmCodeWithByteCodeQuery, } from '@/graphql/types/general_types'; import ByteCode from '@/screens/wasmContractDetails/components/ByteCode'; import Overview from '@/screens/wasmContractDetails/components/Overview'; import WasmCode from '@/screens/wasmContractDetails/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-comdex/src/screens/wasmContractDetails/components/WasmCode/index.tsx
apps/web-comdex/src/screens/wasmContractDetails/components/WasmCode/index.tsx
import AvatarName from '@/components/avatar_name'; import BoxDetails from '@/components/box_details'; import { WasmCodeProps } from '@/screens/wasmContractDetails/types'; import CodeId from '@/screens/wasmContracts/components/CodeId'; import CodeInstantiatePermission from '@/screens/wasmContracts/components/CodeInstant...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-comdex/src/screens/wasmContractDetails/components/Overview/index.tsx
apps/web-comdex/src/screens/wasmContractDetails/components/Overview/index.tsx
import AvatarName from '@/components/avatar_name'; import BoxDetails from '@/components/box_details'; import Timestamp from '@/components/Timestamp'; import { OverviewProps } from '@/screens/wasmContractDetails/types'; import ContractName from '@/screens/wasmContracts/components/ContractName'; import ContractTypeName 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-comdex/src/screens/wasmContractDetails/components/ByteCode/index.tsx
apps/web-comdex/src/screens/wasmContractDetails/components/ByteCode/index.tsx
import BoxDetails from '@/components/box_details'; import useStyles from '@/screens/wasmContractDetails/styles'; import { ByteCodeProps } from '@/screens/wasmContractDetails/types'; import Chip from '@mui/material/Chip'; import CircularProgress from '@mui/material/CircularProgress'; import Step from '@mui/material/Step...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/jest.setup.ts
apps/web-crescent/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-crescent/jest.config.ts
apps/web-crescent/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-crescent/next-env.d.ts
apps/web-crescent/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-crescent/src/graphql/types/general_types.ts
apps/web-crescent/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-crescent/src/graphql/general/account_details_documents.ts
apps/web-crescent/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-crescent/src/graphql/general/validator_details_documents.ts
apps/web-crescent/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-crescent/src/pages/_error.tsx
apps/web-crescent/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-crescent/src/pages/_app.tsx
apps/web-crescent/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-crescent/src/pages/404.tsx
apps/web-crescent/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-crescent/src/pages/index.tsx
apps/web-crescent/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-crescent/src/pages/[dtag].tsx
apps/web-crescent/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-crescent/src/pages/_document.tsx
apps/web-crescent/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-crescent/src/pages/params/index.tsx
apps/web-crescent/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-crescent/src/pages/server-sitemap.xml/index.tsx
apps/web-crescent/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-crescent/src/pages/validators/[address].tsx
apps/web-crescent/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-crescent/src/pages/validators/index.tsx
apps/web-crescent/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-crescent/src/pages/proposals/index.tsx
apps/web-crescent/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-crescent/src/pages/proposals/[id].tsx
apps/web-crescent/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-crescent/src/pages/blocks/index.tsx
apps/web-crescent/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-crescent/src/pages/blocks/[height].tsx
apps/web-crescent/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-crescent/src/pages/accounts/[address].tsx
apps/web-crescent/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-crescent/src/pages/transactions/index.tsx
apps/web-crescent/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-crescent/src/pages/transactions/[tx].tsx
apps/web-crescent/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-crescent/src/components/index.ts
apps/web-crescent/src/components/index.ts
export { default as LiquidStakingExplanation } from '@/components/liquid_staking_explanation';
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/src/components/liquid_staking_explanation/index.tsx
apps/web-crescent/src/components/liquid_staking_explanation/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import useStyles from '@/components/liquid_staking_explanation/styles'; const LiquidStakingExplanation = () => { const { classes } = useStyles(); return ( <div className={classes.root}> <Typography> ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/src/components/liquid_staking_explanation/styles.ts
apps/web-crescent/src/components/liquid_staking_explanation/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()(() => ({ root: { height: '100%', }, })); export default useStyles;
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/src/utils/get_current_inflation.ts
apps/web-crescent/src/utils/get_current_inflation.ts
/** * Helper Function to get inflation amount from a list */ const getCurrentInflationAmount = ( // eslint-disable-next-line camelcase list: { amount: string; end_time: Date; start_time: Date }[] = [] ) => { const today = new Date(); // Get the current inflation schedule from mint params "inflation_schedules"...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/src/recoil/market/hooks.ts
apps/web-crescent/src/recoil/market/hooks.ts
import Big from 'big.js'; 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 { AtomStat...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/src/screens/validator_details/index.tsx
apps/web-crescent/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 Blocks from '@/screens/validator_details/components/blocks'; import Profile from '@/screens/validator_details/component...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/src/screens/validator_details/types.ts
apps/web-crescent/src/screens/validator_details/types.ts
export interface OverviewType { validator: string; operatorAddress: string; selfDelegateAddress: string; description: string; website: string; } export interface StatusType { status: number; inActiveSet?: string; jailed: boolean; tombstoned: boolean; condition: number; liquidStaking: string; 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-crescent/src/screens/validator_details/hooks.ts
apps/web-crescent/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 { useValidatorVotingPowersQuery, ValidatorVotingPowersQuery, useValidatorInfoQuery, ValidatorInfoQuery, ValidatorAddressQuery, useVal...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/src/screens/validator_details/components/validator_overview/index.tsx
apps/web-crescent/src/screens/validator_details/components/validator_overview/index.tsx
import Box from '@/components/box'; import ConditionExplanation from '@/components/condition_explanation'; import InfoPopover from '@/components/info_popover'; import Tag from '@/components/tag'; import { useAddress } from '@/screens/validator_details/components/validator_overview/hooks'; import useStyles 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-crescent/src/screens/validator_details/components/validator_overview/styles.ts
apps/web-crescent/src/screens/validator_details/components/validator_overview/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ addressRoot: { [theme.breakpoints.up('md')]: { display: 'grid', gridTemplateColumns: 'repeat(2,1fr)', }, }, actionIcons: { '&:hover': { cursor: 'pointer', }, }, icons: { '& svg': { ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/src/screens/validators/components/list/index.test.tsx
apps/web-crescent/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-crescent/src/screens/validators/components/list/types.ts
apps/web-crescent/src/screens/validators/components/list/types.ts
export interface ValidatorType { validator: string; votingPower: number; votingPowerPercent: number; liquidStaking: string; commission: number; condition: number; status: number; jailed: boolean; tombstoned: boolean; topVotingPower?: boolean; // top 34% VP } export interface ValidatorsState { loa...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-crescent/src/screens/validators/components/list/hooks.ts
apps/web-crescent/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 chainConfig from '@/chainConfig'; import { useValidatorsQuery, ValidatorsQuery } from '@/graphql/types/general_types'; import { SlashingParams } from '@/models'; 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-crescent/src/screens/validators/components/list/components/mobile/index.tsx
apps/web-crescent/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-crescent/src/screens/validators/components/list/components/mobile/component/single_validator/index.tsx
apps/web-crescent/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 LiquidStakingFalseIcon from 'shared-utils/assets/liquid-staking-false.svg'; import LiquidStakingTrueIcon from 'shared-utils/assets/liquid-staking-true.svg'; 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-crescent/src/screens/validators/components/list/components/desktop/index.tsx
apps/web-crescent/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-crescent/src/screens/validators/components/list/components/desktop/utils.tsx
apps/web-crescent/src/screens/validators/components/list/components/desktop/utils.tsx
import Typography from '@mui/material/Typography'; import type { TFunction } from '@/hooks/useAppTranslation'; import { ReactNode } from 'react'; import InfoPopover from '@/components/info_popover'; import ConditionExplanation from '@/components/condition_explanation'; export const fetchColumns = ( t: TFunction ): {...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-akash/jest.setup.ts
apps/web-akash/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-akash/jest.config.ts
apps/web-akash/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-akash/next-env.d.ts
apps/web-akash/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-akash/src/graphql/types/general_types.ts
apps/web-akash/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-akash/src/graphql/general/account_details_documents.ts
apps/web-akash/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-akash/src/graphql/general/validator_details_documents.ts
apps/web-akash/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-akash/src/pages/_error.tsx
apps/web-akash/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-akash/src/pages/_app.tsx
apps/web-akash/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-akash/src/pages/404.tsx
apps/web-akash/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-akash/src/pages/index.tsx
apps/web-akash/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-akash/src/pages/[dtag].tsx
apps/web-akash/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-akash/src/pages/_document.tsx
apps/web-akash/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-akash/src/pages/params/index.tsx
apps/web-akash/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-akash/src/pages/server-sitemap.xml/index.tsx
apps/web-akash/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-akash/src/pages/validators/[address].tsx
apps/web-akash/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-akash/src/pages/validators/index.tsx
apps/web-akash/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-akash/src/pages/proposals/index.tsx
apps/web-akash/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-akash/src/pages/proposals/[id].tsx
apps/web-akash/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-akash/src/pages/blocks/index.tsx
apps/web-akash/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-akash/src/pages/blocks/[height].tsx
apps/web-akash/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-akash/src/pages/providers/index.tsx
apps/web-akash/src/pages/providers/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import type { NextPage } from 'next'; import Providers from '@/screens/providers'; import nextI18NextConfig from '../../../next-i18next.config'; const ProvidersPage: NextPage = () => <Providers />; export const getStaticProps = withGetStaticProps(nextI18Nex...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-akash/src/pages/accounts/[address].tsx
apps/web-akash/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-akash/src/pages/transactions/index.tsx
apps/web-akash/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-akash/src/pages/transactions/[tx].tsx
apps/web-akash/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-akash/src/components/nav/components/index.ts
apps/web-akash/src/components/nav/components/index.ts
export { default as Desktop } from '@/components/nav/components/desktop'; export { default as MenuItems } from '@/components/nav/components/menu_items'; export { default as Mobile } from '@/components/nav/components/mobile'; export { default as Networks } from '@/components/nav/components/networks'; export { default as...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-akash/src/components/nav/components/mobile/index.tsx
apps/web-akash/src/components/nav/components/mobile/index.tsx
import { FC } from 'react'; import Menu from '@/components/nav/components/mobile/components/menu'; import Navbar from '@/components/nav/components/mobile/components/navbar'; import { useMobile } from '@/components/nav/components/mobile/hooks'; import useStyles from '@/components/nav/components/mobile/styles'; import Ne...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-akash/src/components/nav/components/menu_items/utils.tsx
apps/web-akash/src/components/nav/components/menu_items/utils.tsx
import BlockIcon from 'shared-utils/assets/icon-block.svg'; import HomeIcon from 'shared-utils/assets/icon-home.svg'; import ParamIcon from 'shared-utils/assets/icon-param.svg'; import ProposalsIcon from 'shared-utils/assets/icon-proposals.svg'; import ProviderIcon from 'shared-utils/assets/icon-provider.svg'; import T...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-akash/src/utils/go_to_page/index.ts
apps/web-akash/src/utils/go_to_page/index.ts
export { HOME, BLOCKS, BLOCK_DETAILS, VALIDATOR_DETAILS, VALIDATORS, TRANSACTIONS, TRANSACTION_DETAILS, PROPOSALS, PROPOSAL_DETAILS, ACCOUNT_DETAILS, PARAMS, PROFILE_DETAILS, ADDRESS_DETAILS, } from 'ui/utils/go_to_page'; export const PROVIDERS = '/providers';
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-akash/src/utils/copy_to_clipboard/index.ts
apps/web-akash/src/utils/copy_to_clipboard/index.ts
import copy from 'copy-to-clipboard'; import type { TFunction } from '@/hooks/useAppTranslation'; import { useCallback } from 'react'; import { toast } from 'react-toastify'; export const useAddress = (t: TFunction) => { const handleCopyToClipboard = useCallback( (value: string) => { copy(value); toa...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-akash/src/screens/providers/index.tsx
apps/web-akash/src/screens/providers/index.tsx
import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import Layout from '@/components/layout'; import Compute from '@/screens/providers/components/compute'; import DataBlocks from '@/screens/providers/components/data_blocks'; import Memory from '@/screens/providers/components/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-akash/src/screens/providers/styles.ts
apps/web-akash/src/screens/providers/styles.ts
import { CSSObject } from '@emotion/react'; import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { ...(theme.mixins.layout as CSSObject), display: 'grid', gap: theme.spacing(1), // gridTemplateRows: 'auto auto 1fr', gridTemplateRows: 'auto auto 2fr', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-akash/src/screens/providers/types.ts
apps/web-akash/src/screens/providers/types.ts
export interface MemoryState { available: number; used: number; } export interface CPUState { available: number; used: number; } export interface StorageState { available: number; used: number; pending: number; } export interface ProvidersListPaginationState { itemsPerPage: number; currentPage: num...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-akash/src/screens/providers/hooks.ts
apps/web-akash/src/screens/providers/hooks.ts
import * as R from 'ramda'; import { useCallback, useState } from 'react'; import { CpuMemoryStorageListenerSubscription, ProvidersQuery, useActiveLeasesListenerSubscription, // ProvidersQuery, useActiveProvidersListenerSubscription, useCpuMemoryStorageListenerSubscription, useProvidersQuery, } from '@/gr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false