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-neutron/jest.setup.ts
apps/web-neutron/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-neutron/jest.config.ts
apps/web-neutron/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-neutron/next-env.d.ts
apps/web-neutron/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-neutron/src/chainConfig/types.ts
apps/web-neutron/src/chainConfig/types.ts
export interface ChainSettings { network: string; chainType: string; genesis: { time: string; height: number; }; prefix: { consensus: string; validator: string; account: string; }; primaryTokenUnit: string; votingPowerTokenUnit: string; tokenUnits: { [token: string]: { di...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/chainConfig/index.ts
apps/web-neutron/src/chainConfig/index.ts
import chainJson from '@/chain.json'; import type { ChainConfig } from '@/chainConfig/types'; const chainTypes = [process.env.NEXT_PUBLIC_CHAIN_TYPE]; function chainConfig() { /* Setting the basePath, chainType, chains, and settings variables. */ const chainType = chainTypes.find((c) => !!c)?.toLowerCase() || 'ma...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/graphql/types/provider_types.ts
apps/web-neutron/src/graphql/types/provider_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-neutron/src/graphql/types/general_types.ts
apps/web-neutron/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-neutron/src/graphql/general/account_details_documents.ts
apps/web-neutron/src/graphql/general/account_details_documents.ts
export const AccountBalancesDocument = /* GraphQL */ ` query AccountBalances($address: String!) { accountBalances: action_account_balance(address: $address) { coins } } `;
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/graphql/provider/account_details_documents.ts
apps/web-neutron/src/graphql/provider/account_details_documents.ts
export const AccountCommissionDocument = /* GraphQL */ ` query AccountCommission($validatorAddress: String!) { bdjuno_provider { commission: action_validator_commission_amount(address: $validatorAddress) { coins } } } `; export const AccountWithdrawalAddressDocument = /* GraphQL */ ` ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/graphql/provider/validator_details_documents.ts
apps/web-neutron/src/graphql/provider/validator_details_documents.ts
export const ValidatorDelegationsDocument = /* GraphQL */ ` query ValidatorDelegations( $validatorAddress: String! $offset: Int = 0 $limit: Int = 10 $pagination: Boolean! = true ) { bdjuno_provider { delegations: action_validator_delegations( address: $validatorAddress limi...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/graphql/provider/validators_address_list.ts
apps/web-neutron/src/graphql/provider/validators_address_list.ts
export const ValidatorsAddressListDocument = /* GraphQL */ ` query ValidatorsAddressList { ccv_validator { validator { validatorInfo: validator_info { operatorAddress: operator_address selfDelegateAddress: self_delegate_address consensusAddress: consensus_address } vali...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/graphql/provider/params.ts
apps/web-neutron/src/graphql/provider/params.ts
export const OnlineVotingPowerDocument = /* GraphQL */ ` query Params { slashingParams: slashing_params(limit: 1, order_by: {height: desc}) { params } wasmParams: wasm_params(limit: 1, order_by: {height: desc}) { instantiate_default_permission code_upload_access } ccv_consumer_params { par...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/graphql/provider/validator_details.ts
apps/web-neutron/src/graphql/provider/validator_details.ts
export const LastHundredBlocksDocument = /* GraphQL */ ` subscription LastHundredBlocks($address: String) { block(offset: 1, order_by: { height: desc }, limit: 100) { height ccv_validator { validator { validatorInfo: validator_info { operatorAddress: operator_address ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/graphql/provider/online_voting_power.ts
apps/web-neutron/src/graphql/provider/online_voting_power.ts
export const OnlineVotingPowerDocument = /* GraphQL */ ` query OnlineVotingPower{ bdjuno_provider { activeTotal: validator_status_aggregate(where: {status: {_eq: 3}}) { aggregate { count } } validatorVotingPowerAggregate: validator_voting_power_aggregate(where: {validator: {validat...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/graphql/provider/active_validator_count.ts
apps/web-neutron/src/graphql/provider/active_validator_count.ts
export const ActiveValidatorCountDocument = /* GraphQL */ ` query ActiveValidatorCount{ bdjuno_provider { activeTotal: validator_status_aggregate(where: {status: {_eq: 3}}) { aggregate { count } } inactiveTotal: validator_status_aggregate(where: {status: {_neq: 3}}) { aggrega...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/hooks/useValidatorConsensusAddressesList/index.ts
apps/web-neutron/src/hooks/useValidatorConsensusAddressesList/index.ts
import { useEffect, useState } from 'react'; import { useRecoilCallback } from 'recoil'; import * as R from 'ramda'; import { writeProfile } from '@/recoil/profiles/selectors'; import { useValidatorConsensusAddressesListQuery } from '@/graphql/types/provider_types'; type Profile = { name: string; address: string; ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/hooks/useConsumerCustomValidator/index.ts
apps/web-neutron/src/hooks/useConsumerCustomValidator/index.ts
import { useEffect, useState } from 'react'; import { useRecoilCallback } from 'recoil'; import * as R from 'ramda'; import { writeProfile } from '@/recoil/profiles/selectors'; import { useConsumerCustomValidatorQuery } from '@/graphql/types/general_types'; type Profile = { name: string; address: string; imageUr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/hooks/useProviderCustomValidator/index.ts
apps/web-neutron/src/hooks/useProviderCustomValidator/index.ts
import { useEffect, useState } from 'react'; import { useRecoilCallback } from 'recoil'; import * as R from 'ramda'; import { writeProfile } from '@/recoil/profiles/selectors'; import { useProviderCustomValidatorQuery } from '@/graphql/types/general_types'; type Profile = { name: string; address: string; imageUr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/pages/_error.tsx
apps/web-neutron/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-neutron/src/pages/_app.tsx
apps/web-neutron/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-neutron/src/pages/404.tsx
apps/web-neutron/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-neutron/src/pages/index.tsx
apps/web-neutron/src/pages/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import Home from '@/screens/home'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../next-i18next.config'; const HomePage: NextPage = () => <Home />; export const getStaticProps = withGetStaticProps( nextI18NextConfig, 'home', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/pages/[dtag].tsx
apps/web-neutron/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-neutron/src/pages/_document.tsx
apps/web-neutron/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-neutron/src/pages/params/index.tsx
apps/web-neutron/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-neutron/src/pages/server-sitemap.xml/index.tsx
apps/web-neutron/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-neutron/src/pages/validators/[address].tsx
apps/web-neutron/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-neutron/src/pages/validators/index.tsx
apps/web-neutron/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-neutron/src/pages/blocks/index.tsx
apps/web-neutron/src/pages/blocks/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import Blocks from '@/screens/blocks'; import type { NextPage } from 'next'; 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-neutron/src/pages/blocks/[height].tsx
apps/web-neutron/src/pages/blocks/[height].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import BlockDetails from '@/screens/block_details'; import type { NextPage } from 'next'; 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-neutron/src/pages/accounts/[address].tsx
apps/web-neutron/src/pages/accounts/[address].tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import AccountDetails from '@/screens/account_details'; import type { NextPage } from 'next'; 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-neutron/src/pages/transactions/index.tsx
apps/web-neutron/src/pages/transactions/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import Transactions from '@/screens/transactions'; import type { NextPage } from 'next'; 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-neutron/src/pages/transactions/[tx].tsx
apps/web-neutron/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-neutron/src/components/nav/components/title_bar/styles.ts
apps/web-neutron/src/components/nav/components/title_bar/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { padding: theme.spacing(1, 2), display: 'flex', justifyContent: 'center', flexDirection: 'column', alignItems: 'flex-start', [theme.breakpoints.up('lg')]: { padding: theme.spacing(1, 3), ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/components/nav/components/menu_items/utils.tsx
apps/web-neutron/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 TransactionIcon from 'shared-utils/assets/icon-transaction.svg'; import UserIcon from 'shared-utils/assets/icon-user.svg'; import { BLO...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/components/layout/index.tsx
apps/web-neutron/src/components/layout/index.tsx
import { motion, Transition, Variants } from 'framer-motion'; import Banner, { getBannersLinks } from '@/components/banner'; import Footer from '@/components/footer'; import useStyles from '@/components/layout/styles'; import type { LayoutProps } from '@/components/layout/types'; import Nav from '@/components/nav'; 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-neutron/src/components/layout/styles.ts
apps/web-neutron/src/components/layout/styles.ts
import { CSSObject } from '@emotion/react'; import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()(theme => ({ root: { [theme.breakpoints.up('lg')]: { display: 'flex', flexDirection: 'column', minHeight: '100vh', }, }, contentWrapper: { [theme.breakpoints.up('lg'...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/components/avatar_name/index.tsx
apps/web-neutron/src/components/avatar_name/index.tsx
import { FC } from 'react'; import { AvatarNameProps } from '@/components/avatar_name/types'; import AvatarNameBase from 'ui/src/components/avatar_name'; const AvatarName: FC<AvatarNameProps> = ({ displayAddress, ...props }) => { const noLink = ['delegationRow', 'unbondingRow', 'redelegationRow'].includes( props...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/components/avatar_name/types.ts
apps/web-neutron/src/components/avatar_name/types.ts
import { AvatarNameProps as AvatarNamePropsBase } from 'ui/src/components/avatar_name/types'; export type AvatarNameProps = AvatarNamePropsBase & { displayAddress?: string; };
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/models/ccv_consumer_params/index.tsx
apps/web-neutron/src/models/ccv_consumer_params/index.tsx
import * as R from 'ramda'; type CCVConsumerParamsPayload = { enabled: boolean; unbondingPeriod: number; ccvTimeoutPeriod: number; historicalEntries: number; softOptOutThreshold: string; transferTimeoutPeriod: number; consumerRedistributionFraction: string; blocksPerDistributionTransmission: number; };...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/utils/index.ts
apps/web-neutron/src/utils/index.ts
export { formatProviderToken } from './format_provider_token';
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/utils/format_provider_token/index.ts
apps/web-neutron/src/utils/format_provider_token/index.ts
import Big from 'big.js'; import chainConfig from '@/chainConfig'; const provider = chainConfig(); /** * Util to help me correctly transform a base denom amount * in to a display denom amount * @param value the current amount * @param denom the denom to convert the amount in to * @returns TokenUnit */ export co...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/recoil/validators/hooks.ts
apps/web-neutron/src/recoil/validators/hooks.ts
import { useEffect } from 'react'; import { useRecoilCallback } from 'recoil'; import { AtomState as ValidatorAtomState } from 'ui/recoil/validators'; import { atomFamilyState as profileAtomFamilyState } from '@/recoil/profiles/atom'; import type { AtomState as ProfileAtomState } from '@/recoil/profiles/types'; import ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/recoil/market/hooks.ts
apps/web-neutron/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-neutron/src/screens/params/index.tsx
apps/web-neutron/src/screens/params/index.tsx
import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import BoxDetails from '@/components/box_details'; import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import { useParams } from '@/screens/params/hooks'; import useStyles 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-neutron/src/screens/params/utils.tsx
apps/web-neutron/src/screens/params/utils.tsx
import type { CCVConsumer, Distribution, Minting } from '@/screens/params/types'; import { nanoToSeconds, secondsToDays } from '@/utils/time'; import type { TFunction } from '@/hooks/useAppTranslation'; import numeral from 'numeral'; const convertBySeconds = (seconds: number, t: TFunction) => { const SECONDS_IN_DAY ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/params/types.ts
apps/web-neutron/src/screens/params/types.ts
export interface Minting { blocksPerYear: number; goalBonded: number; inflationMax: number; inflationMin: number; inflationRateChange: number; mintDenom: string; } export interface Distribution { baseProposerReward: number; bonusProposerReward: number; communityTax: number; withdrawAddressEnabled: ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/params/hooks.ts
apps/web-neutron/src/screens/params/hooks.ts
import * as R from 'ramda'; import { useCallback, useState } from 'react'; import { ParamsQuery, useParamsQuery } from '@/graphql/types/provider_types'; import { DistributionParams, MintParams } from '@/models'; import type { ParamsState } from '@/screens/params/types'; import CCVConsumerParams from '../../models/ccv_c...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/validator_details/index.tsx
apps/web-neutron/src/screens/validator_details/index.tsx
import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import DesmosProfile from '@/components/desmos_profile'; import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import Blocks from '@/screens/validator_details/components/blocks'; im...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/validator_details/types.ts
apps/web-neutron/src/screens/validator_details/types.ts
export interface OverviewType { validator: string; operatorAddress: string; selfDelegateAddress: string; description: string; website: string; } export interface StatusType { jailed: boolean; condition: number; tombstoned: boolean; commission: number; signedBlockWindow: number; missedBlockCounter...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/validator_details/hooks.ts
apps/web-neutron/src/screens/validator_details/hooks.ts
import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import chainConfig from '@/chainConfig'; import { useValidatorDetailsQuery, ValidatorDetailsQuery } from '@/graphql/types/provider_types'; import { useDesmosProfile } from '@/hooks/use_desmos_p...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/validator_details/components/blocks/index.tsx
apps/web-neutron/src/screens/validator_details/components/blocks/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; import Box from '@/components/box'; import useStyles from '@/screens/validator_details/components/blocks/styles'; const Blocks: FC<ComponentDefault> = ({ className }) => { const {...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/validator_details/components/blocks/styles.ts
apps/web-neutron/src/screens/validator_details/components/blocks/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()(theme => ({ root: { '& .MuiTypography-h2': { marginBottom: theme.spacing(2), }, }, content: { flex: 1, display: 'flex', alignItems: 'center', justifyContent: 'space-around', color: theme.palette.custom.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-neutron/src/screens/validator_details/components/staking/hooks.ts
apps/web-neutron/src/screens/validator_details/components/staking/hooks.ts
import Big from 'big.js'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import { SyntheticEvent, useCallback, useEffect, useState } from 'react'; import chainConfig from '@/chainConfig'; import { useValidatorDelegationsQuery, useValidatorRedelegationsQuery, useValidatorUndelegationsQuery, ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/validator_details/components/profile/index.tsx
apps/web-neutron/src/screens/validator_details/components/profile/index.tsx
import Avatar from '@/components/avatar'; import Box from '@/components/box'; import Markdown from '@/components/markdown'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import useStyles from '@/screens/validator_details/components/profile/styles'; import type { OverviewType } from '@/screens/validator_de...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/validator_details/components/voting_power/index.tsx
apps/web-neutron/src/screens/validator_details/components/voting_power/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import Link from 'next/link'; import numeral from 'numeral'; import { FC } from 'react'; import chainConfig from '@/chainConfig'; import { BLOCK_DETAILS } from '@/utils/go_to_page'; import useStyles from '@/scr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/validators/components/list/index.tsx
apps/web-neutron/src/screens/validators/components/list/index.tsx
import { FC, ReactNode, useMemo } from 'react'; import Box from '@/components/box'; import LoadAndExist from '@/components/load_and_exist'; import NoData from '@/components/no_data'; import useShallowMemo from '@/hooks/useShallowMemo'; import { useProfilesRecoil } from '@/recoil/profiles/hooks'; import Desktop 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-neutron/src/screens/validators/components/list/types.ts
apps/web-neutron/src/screens/validators/components/list/types.ts
import { ValidatorType as ValidatorTypeBase, ValidatorsState as ValidatorsStateBase, ItemType, } from 'ui/src/screens/validators/components/list/types'; type ValidatorType = ValidatorTypeBase & { consumerOperatorAddress: string; }; type ValidatorsState = Omit<ValidatorsStateBase, 'items'> & { items: Validat...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/validators/components/list/hooks.ts
apps/web-neutron/src/screens/validators/components/list/hooks.ts
import Big from 'big.js'; import numeral from 'numeral'; import * as R from 'ramda'; import { SyntheticEvent, useCallback, useEffect, useState } from 'react'; import { SlashingParams } from '@/models'; import chainConfig from '@/chainConfig'; import { useValidatorsQuery, ValidatorsQuery } from '@/graphql/types/general_...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/block_details/hooks.ts
apps/web-neutron/src/screens/block_details/hooks.ts
import { useRouter } from 'next/router'; import numeral from 'numeral'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import { convertMsgsToModels } from '@/components/msg/utils'; import { BlockDetailsQuery, useBlockDetailsQuery } from '@/graphql/types/general_types'; import type...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/block_details/components/signatures/index.tsx
apps/web-neutron/src/screens/block_details/components/signatures/index.tsx
import Box from '@/components/box'; import NoData from '@/components/no_data'; import Desktop from '@/screens/block_details/components/signatures/components/desktop'; import Mobile from '@/screens/block_details/components/signatures/components/mobile'; import useStyles from '@/screens/block_details/components/signature...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/block_details/components/signatures/components/index.ts
apps/web-neutron/src/screens/block_details/components/signatures/components/index.ts
import Desktop from '@/screens/block_details/components/signatures/components/desktop'; import Mobile from '@/screens/block_details/components/signatures/components/mobile'; export { Desktop, Mobile };
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/block_details/components/signatures/components/mobile/index.tsx
apps/web-neutron/src/screens/block_details/components/signatures/components/mobile/index.tsx
import Divider from '@mui/material/Divider'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC, LegacyRef } from 'react'; import AutoSizer from 'react-virtualized-auto-sizer'; import { ListChildComponentProps, VariableSizeList as List } 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-neutron/src/screens/block_details/components/signatures/components/desktop/index.tsx
apps/web-neutron/src/screens/block_details/components/signatures/components/desktop/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC, LegacyRef, useMemo } from 'react'; import AutoSizer from 'react-virtualized-auto-sizer'; import { VariableSizeGrid as Grid } from 'react-window'; import { columns, formatRows, } 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-neutron/src/screens/block_details/components/signatures/components/desktop/utils.tsx
apps/web-neutron/src/screens/block_details/components/signatures/components/desktop/utils.tsx
import { FC } from 'react'; import AvatarName from '@/components/avatar_name'; import useValidatorConsensusAddressesList from '@/hooks/useValidatorConsensusAddressesList'; import { VALIDATOR_DETAILS } from '@/utils/go_to_page'; export const columns: { key: string; align?: 'left' | 'center' | 'right' | 'justify' | ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/block_details/components/overview/index.tsx
apps/web-neutron/src/screens/block_details/components/overview/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numeral'; import { useRecoilValue } from 'recoil'; import AvatarName from '@/components/avatar_name'; import BoxDetails from '@/components/box_details'; import { readDate, readTimeFormat } ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/blocks/hooks.ts
apps/web-neutron/src/screens/blocks/hooks.ts
import * as R from 'ramda'; import { useCallback, useState } from 'react'; import { BlocksListenerSubscription, useBlocksListenerSubscription, useBlocksQuery, BlocksQuery, } from '@/graphql/types/general_types'; import type { BlocksState, BlockType } from '@/screens/blocks/types'; // This is a bandaid as it ca...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/blocks/components/index.ts
apps/web-neutron/src/screens/blocks/components/index.ts
import Desktop from '@/screens/blocks/components/desktop'; import Mobile from '@/screens/blocks/components/mobile'; 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-neutron/src/screens/blocks/components/mobile/index.tsx
apps/web-neutron/src/screens/blocks/components/mobile/index.tsx
import AvatarName from '@/components/avatar_name'; import Loading from '@/components/loading'; import SingleBlockMobile from '@/components/single_block_mobile'; import Timestamp from '@/components/Timestamp'; import { useList, useListRow } from '@/hooks/use_react_window'; import useStyles from '@/screens/blocks/compone...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/blocks/components/desktop/index.tsx
apps/web-neutron/src/screens/blocks/components/desktop/index.tsx
import AvatarName from '@/components/avatar_name'; import Loading from '@/components/loading'; import Timestamp from '@/components/Timestamp'; import { useGrid } from '@/hooks/use_react_window'; import useStyles from '@/screens/blocks/components/desktop/styles'; import { columns } from '@/screens/blocks/components/desk...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/home/components/blocks/hooks.ts
apps/web-neutron/src/screens/home/components/blocks/hooks.ts
import * as R from 'ramda'; import { useCallback, useState } from 'react'; import { BlocksListenerSubscription, useBlocksListenerSubscription, } from '@/graphql/types/general_types'; import type { BlocksState, ItemType } from '@/screens/home/components/blocks/types'; const formatBlocks = (data: BlocksListenerSubsc...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/home/components/blocks/components/mobile/index.tsx
apps/web-neutron/src/screens/home/components/blocks/components/mobile/index.tsx
import AvatarName from '@/components/avatar_name'; import SingleBlockMobile from '@/components/single_block_mobile'; import Timestamp from '@/components/Timestamp'; import useProviderCustomValidator from '@/hooks/useProviderCustomValidator'; import type { ItemType } from '@/screens/home/components/blocks/types'; import...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/home/components/blocks/components/desktop/index.tsx
apps/web-neutron/src/screens/home/components/blocks/components/desktop/index.tsx
import AvatarName from '@/components/avatar_name'; import Timestamp from '@/components/Timestamp'; import useAppTranslation from '@/hooks/useAppTranslation'; import useProviderCustomValidator from '@/hooks/useProviderCustomValidator'; import useStyles from '@/screens/home/components/blocks/components/desktop/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-neutron/src/screens/home/components/data_blocks/hooks.ts
apps/web-neutron/src/screens/home/components/data_blocks/hooks.ts
import numeral from 'numeral'; import { useState } from 'react'; import chainConfig from '@/chainConfig'; import { AverageBlockTimeQuery, TokenPriceListenerSubscription, useAverageBlockTimeQuery, useLatestBlockHeightListenerSubscription, useTokenPriceListenerSubscription, } from '@/graphql/types/general_types...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/home/components/hero/components/online_voting_power/index.tsx
apps/web-neutron/src/screens/home/components/hero/components/online_voting_power/index.tsx
import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numeral'; import { FC } from 'react'; import chainConfig from '@/chainConfig'; import useStyles from '@/screens/home/components/hero/components/online_voting_power/styles'; import { useOnli...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/home/components/hero/components/online_voting_power/hooks.ts
apps/web-neutron/src/screens/home/components/hero/components/online_voting_power/hooks.ts
import numeral from 'numeral'; import * as R from 'ramda'; import { useCallback, useState } from 'react'; import chainConfig from '@/chainConfig'; import { OnlineVotingPowerQuery, useOnlineVotingPowerQuery } from '@/graphql/types/provider_types'; import { formatToken } from '@/utils/format_token'; const { votingPowerT...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/home/components/consensus/index.tsx
apps/web-neutron/src/screens/home/components/consensus/index.tsx
import AvatarName from '@/components/avatar_name'; import Box from '@/components/box'; import Loading from '@/components/loading'; import { useConsensus } from '@/screens/home/components/consensus/hooks'; import useStyles from '@/screens/home/components/consensus/styles'; import Typography from '@mui/material/Typograph...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/home/components/tokenomics/index.tsx
apps/web-neutron/src/screens/home/components/tokenomics/index.tsx
import Box from '@/components/box'; import useStyles from '@/screens/home/components/tokenomics/styles'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; const Tokenomics: FC<ComponentDefault> = ({ className }) => { const { t } ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/home/components/tokenomics/styles.ts
apps/web-neutron/src/screens/home/components/tokenomics/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()(theme => ({ root: { height: '100%', display: 'flex', justifyContent: 'center', flexDirection: 'column', }, label: { marginBottom: theme.spacing(2), }, content: { flex: 1, display: 'flex', alignItems: 'c...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/home/components/tokenomics/hooks.ts
apps/web-neutron/src/screens/home/components/tokenomics/hooks.ts
import numeral from 'numeral'; import { useState } from 'react'; import { TokenomicsQuery, useTokenomicsQuery } from '@/graphql/types/general_types'; import { formatToken } from '@/utils/format_token'; import chainConfig from '@/chainConfig'; type TokenomicsState = { bonded: number; unbonded: number; unbonding: ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/account_details/index.tsx
apps/web-neutron/src/screens/account_details/index.tsx
import { NextSeo } from 'next-seo'; import useAppTranslation from '@/hooks/useAppTranslation'; import DesmosProfile from '@/components/desmos_profile'; import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import Balance from '@/screens/account_details/components/balance'; im...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/account_details/utils.tsx
apps/web-neutron/src/screens/account_details/utils.tsx
import { useEffect, useMemo } from 'react'; import { useAccountWithdrawalAddressQuery } from '@/graphql/types/provider_types'; import { useAccountBalancesQuery } from '@/graphql/types/general_types'; export const useAccountWithdrawalAddress = (address?: string) => { const defaultReturnValue = useMemo( () => ({ ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/account_details/types.ts
apps/web-neutron/src/screens/account_details/types.ts
export interface OverviewType { address: string; withdrawalAddress: string; } export interface BalanceType { available: TokenUnit; total: TokenUnit; } export interface OtherTokenType { denom: string; available: TokenUnit; } export interface RewardsType { [value: string]: TokenUnit[]; } export interfac...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/account_details/hooks.ts
apps/web-neutron/src/screens/account_details/hooks.ts
import Big from 'big.js'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useCallback, useEffect, useState } from 'react'; import chainConfig from '@/chainConfig'; import { useDesmosProfile } from '@/hooks/use_desmos_profile'; import type { AccountDetailState, BalanceType, OtherToken...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/account_details/components/transactions/hooks.ts
apps/web-neutron/src/screens/account_details/components/transactions/hooks.ts
import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useEffect, useRef, useState } from 'react'; import chainConfig from '@/chainConfig'; import { convertMsgsToModels } from '@/components/msg/utils'; import { GetMessagesByAddressQuery, useGetMessagesByAddressQuery, } from '@/graphql/types/g...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/account_details/components/other_tokens/components/mobile/index.tsx
apps/web-neutron/src/screens/account_details/components/other_tokens/components/mobile/index.tsx
import Divider from '@mui/material/Divider'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC, Fragment } from 'react'; import { formatNumber } from '@/utils/format_token'; import type { OtherTokenType } from '@/screens/account_details/types'; 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-neutron/src/screens/account_details/components/other_tokens/components/desktop/index.tsx
apps/web-neutron/src/screens/account_details/components/other_tokens/components/desktop/index.tsx
import Table from '@mui/material/Table'; import TableBody from '@mui/material/TableBody'; import TableCell from '@mui/material/TableCell'; import TableHead from '@mui/material/TableHead'; import TableRow from '@mui/material/TableRow'; import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-neutron/src/screens/account_details/components/overview/index.tsx
apps/web-neutron/src/screens/account_details/components/overview/index.tsx
import Box from '@/components/box'; import { useWindowOrigin } from '@/hooks/use_window'; import { useOverview } from '@/screens/account_details/components/overview/hooks'; import useStyles from '@/screens/account_details/components/overview/styles'; import { useDisplayStyles } from '@/styles/useSharedStyles'; import {...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-shentu/jest.setup.ts
apps/web-shentu/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-shentu/jest.config.ts
apps/web-shentu/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-shentu/next-env.d.ts
apps/web-shentu/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-shentu/src/graphql/types/general_types.ts
apps/web-shentu/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-shentu/src/graphql/general/account_details_documents.ts
apps/web-shentu/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-shentu/src/graphql/general/validator_details_documents.ts
apps/web-shentu/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-shentu/src/pages/_error.tsx
apps/web-shentu/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-shentu/src/pages/_app.tsx
apps/web-shentu/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-shentu/src/pages/404.tsx
apps/web-shentu/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-shentu/src/pages/index.tsx
apps/web-shentu/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-shentu/src/pages/[dtag].tsx
apps/web-shentu/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-shentu/src/pages/_document.tsx
apps/web-shentu/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