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-shentu/src/pages/params/index.tsx | apps/web-shentu/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-shentu/src/pages/server-sitemap.xml/index.tsx | apps/web-shentu/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-shentu/src/pages/validators/[address].tsx | apps/web-shentu/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-shentu/src/pages/validators/index.tsx | apps/web-shentu/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-shentu/src/pages/proposals/index.tsx | apps/web-shentu/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-shentu/src/pages/proposals/[id].tsx | apps/web-shentu/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-shentu/src/pages/blocks/index.tsx | apps/web-shentu/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-shentu/src/pages/blocks/[height].tsx | apps/web-shentu/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-shentu/src/pages/accounts/[address].tsx | apps/web-shentu/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-shentu/src/pages/transactions/index.tsx | apps/web-shentu/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-shentu/src/pages/transactions/[tx].tsx | apps/web-shentu/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-shentu/src/models/gov_params.ts | apps/web-shentu/src/models/gov_params.ts | import * as R from 'ramda';
class GovParams {
public depositParams: {
minDeposit: {
denom: string;
amount: string;
}[];
maxDepositPeriod: number;
};
public tallyParams: {
default: {
quorum: string;
threshold: string;
vetoThreshold: string;
};
certifierStakeV... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-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/screens/params/index.tsx | apps/web-shentu/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-shentu/src/screens/params/utils.tsx | apps/web-shentu/src/screens/params/utils.tsx | import type { Distribution, Gov, Minting, Slashing, Staking } from '@/screens/params/types';
import { nanoToSeconds, secondsToDays } from '@/utils/time';
import type { TFunction } from '@/hooks/useAppTranslation';
import numeral from 'numeral';
import { ReactNode } from 'react';
const convertBySeconds = (seconds: numb... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-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/screens/params/types.ts | apps/web-shentu/src/screens/params/types.ts | export interface Staking {
bondDenom: string;
unbondingTime: number;
maxEntries: number;
historicalEntries: number;
maxValidators: number;
}
export interface Slashing {
downtimeJailDuration: number;
minSignedPerWindow: number;
signedBlockWindow: number;
slashFractionDoubleSign: number;
slashFractio... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-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/screens/params/hooks.ts | apps/web-shentu/src/screens/params/hooks.ts | import numeral from 'numeral';
import * as R from 'ramda';
import { useCallback, useState } from 'react';
import chainConfig from '@/chainConfig';
import { ParamsQuery, useParamsQuery } from '@/graphql/types/general_types';
import { DistributionParams, MintParams, SlashingParams, StakingParams } from '@/models';
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-nym/jest.setup.ts | apps/web-nym/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-nym/jest.config.ts | apps/web-nym/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-nym/next-env.d.ts | apps/web-nym/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-nym/src/chainConfig/types.ts | apps/web-nym/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;
priceTokenUnit: string;
votingPowerTokenUnit: string;
tokenUnits: {
[... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nym/src/graphql/types/general_types.ts | apps/web-nym/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-nym/src/graphql/general/account_details_documents.ts | apps/web-nym/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-nym/src/graphql/general/validator_details_documents.ts | apps/web-nym/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-nym/src/pages/_error.tsx | apps/web-nym/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-nym/src/pages/_app.tsx | apps/web-nym/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-nym/src/pages/404.tsx | apps/web-nym/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-nym/src/pages/index.tsx | apps/web-nym/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-nym/src/pages/[dtag].tsx | apps/web-nym/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-nym/src/pages/_document.tsx | apps/web-nym/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-nym/src/pages/params/index.tsx | apps/web-nym/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-nym/src/pages/server-sitemap.xml/index.tsx | apps/web-nym/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-nym/src/pages/validators/[address].tsx | apps/web-nym/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-nym/src/pages/validators/index.tsx | apps/web-nym/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-nym/src/pages/proposals/index.tsx | apps/web-nym/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-nym/src/pages/proposals/[id].tsx | apps/web-nym/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-nym/src/pages/blocks/index.tsx | apps/web-nym/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-nym/src/pages/blocks/[height].tsx | apps/web-nym/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-nym/src/pages/accounts/[address].tsx | apps/web-nym/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-nym/src/pages/transactions/index.tsx | apps/web-nym/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-nym/src/pages/transactions/[tx].tsx | apps/web-nym/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-nym/src/components/nav/index.tsx | apps/web-nym/src/components/nav/index.tsx | import Desktop from '@/components/nav/components/desktop';
import Mobile from '@/components/nav/components/mobile';
import { useDisplayStyles } from '@/styles/useSharedStyles';
import { FC } from 'react';
type NavProps = {
title?: string;
};
const Nav: FC<NavProps> = ({ title }) => {
const display = useDisplaySty... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nym/src/models/gov_params/index.ts | apps/web-nym/src/models/gov_params/index.ts | import * as R from 'ramda';
class GovParams {
public params: {
quorum: string;
threshold: string;
minDeposit: Array<{
denom: string;
amount: string;
}>;
votingPeriod: number;
burnVoteVeto: boolean;
vetoThreshold: string;
maxDepositPeriod: number;
minInitialDepositRatio... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nym/src/screens/params/index.tsx | apps/web-nym/src/screens/params/index.tsx | import BoxDetails from '@/components/box_details';
import Layout from '@/components/layout';
import LoadAndExist from '@/components/load_and_exist';
import useAppTranslation from '@/hooks/useAppTranslation';
import { useParams } from '@/screens/params/hooks';
import useStyles from '@/screens/params/styles';
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-nym/src/screens/params/utils.tsx | apps/web-nym/src/screens/params/utils.tsx | import { nanoToSeconds, secondsToDays } from '@/utils/time';
import type { TFunction } from '@/hooks/useAppTranslation';
import numeral from 'numeral';
import type { Distribution, Minting, Slashing, Staking, Gov } from './types';
const convertBySeconds = (seconds: number, t: TFunction) => {
const SECONDS_IN_DAY = 86... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nym/src/screens/params/types.ts | apps/web-nym/src/screens/params/types.ts | export interface Staking {
bondDenom: string;
unbondingTime: number;
maxEntries: number;
historicalEntries: number;
maxValidators: number;
}
export interface Slashing {
downtimeJailDuration: number;
minSignedPerWindow: number;
signedBlockWindow: number;
slashFractionDoubleSign: number;
slashFractio... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nym/src/screens/params/hooks.ts | apps/web-nym/src/screens/params/hooks.ts | import * as R from 'ramda';
import { useCallback, useState } from 'react';
import chainConfig from '@/chainConfig';
import { ParamsQuery, useParamsQuery } from '@/graphql/types/general_types';
import { DistributionParams, MintParams, SlashingParams, StakingParams } from '@/models';
import numeral from 'numeral';
impor... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nym/src/screens/proposal_details/types.ts | apps/web-nym/src/screens/proposal_details/types.ts | export interface OverviewType {
title: string;
id: number;
proposer: string;
description: string;
status: string;
submitTime: string;
depositEndTime: string;
votingStartTime: string | null;
votingEndTime: string | null;
content: {
recipient: string;
amount: Array<{
amount: 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-nym/src/screens/proposal_details/hooks.ts | apps/web-nym/src/screens/proposal_details/hooks.ts | import { useRouter } from 'next/router';
import * as R from 'ramda';
import { useCallback, useState } from 'react';
import { ProposalDetailsQuery, useProposalDetailsQuery } from '@/graphql/types/general_types';
import type { ProposalState } from './types';
// =========================
// overview
// ==================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nym/src/screens/home/components/data_blocks/hooks.ts | apps/web-nym/src/screens/home/components/data_blocks/hooks.ts | import numeral from 'numeral';
import { useState } from 'react';
import chainConfig from '@/chainConfig';
import {
ActiveValidatorCountQuery,
AverageBlockTimeQuery,
TokenPriceListenerSubscription,
useActiveValidatorCountQuery,
useAverageBlockTimeQuery,
useLatestBlockHeightListenerSubscription,
useTokenPri... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nym/src/screens/home/components/hero/hooks.ts | apps/web-nym/src/screens/home/components/hero/hooks.ts | import * as R from 'ramda';
import { useCallback, useState } from 'react';
import chainConfig from '@/chainConfig';
import { useTokenPriceHistoryQuery } from '@/graphql/types/general_types';
import type { HeroState } from '@/screens/home/components/hero/types';
const { priceTokenUnit, tokenUnits } = chainConfig();
con... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-nym/src/screens/transactions/index.test.tsx | apps/web-nym/src/screens/transactions/index.test.tsx | import { TransactionsDocument, TransactionsListenerDocument } from '@/graphql/types/general_types';
import Transactions from '@/screens/transactions';
import { mockClient } from '@/tests/mocks/mockApollo';
import MockTheme from '@/tests/mocks/MockTheme';
import wait from '@/tests/utils/wait';
import { ApolloProvider } ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web/jest.setup.ts | apps/web/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/jest.config.ts | apps/web/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/next-env.d.ts | apps/web/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/src/graphql/types/general_types.ts | apps/web/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/src/graphql/general/account_details_documents.ts | apps/web/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/src/graphql/general/validator_details_documents.ts | apps/web/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/src/pages/_error.tsx | apps/web/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/src/pages/_app.tsx | apps/web/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/src/pages/404.tsx | apps/web/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/src/pages/index.tsx | apps/web/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/src/pages/[dtag].tsx | apps/web/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/src/pages/_document.tsx | apps/web/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/src/pages/params/index.tsx | apps/web/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/src/pages/server-sitemap.xml/index.tsx | apps/web/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/src/pages/validators/[address].tsx | apps/web/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/src/pages/validators/index.tsx | apps/web/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/src/pages/proposals/index.tsx | apps/web/src/pages/proposals/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import Tokens from '@/screens/proposals';
import type { NextPage } from 'next';
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/src/pages/proposals/[id].tsx | apps/web/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/src/pages/blocks/index.tsx | apps/web/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/src/pages/blocks/[height].tsx | apps/web/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/src/pages/accounts/[address].tsx | apps/web/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/src/pages/transactions/index.tsx | apps/web/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/src/pages/transactions/[tx].tsx | apps/web/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-jackal/jest.setup.ts | apps/web-jackal/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-jackal/jest.config.ts | apps/web-jackal/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-jackal/next-env.d.ts | apps/web-jackal/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-jackal/src/graphql/types/general_types.ts | apps/web-jackal/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-jackal/src/graphql/general/account_details_documents.ts | apps/web-jackal/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-jackal/src/graphql/general/validator_details_documents.ts | apps/web-jackal/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-jackal/src/pages/_error.tsx | apps/web-jackal/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-jackal/src/pages/_app.tsx | apps/web-jackal/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-jackal/src/pages/404.tsx | apps/web-jackal/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-jackal/src/pages/index.tsx | apps/web-jackal/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-jackal/src/pages/[dtag].tsx | apps/web-jackal/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-jackal/src/pages/_document.tsx | apps/web-jackal/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-jackal/src/pages/params/index.tsx | apps/web-jackal/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-jackal/src/pages/server-sitemap.xml/index.tsx | apps/web-jackal/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-jackal/src/pages/validators/[address].tsx | apps/web-jackal/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-jackal/src/pages/validators/index.tsx | apps/web-jackal/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-jackal/src/pages/proposals/index.tsx | apps/web-jackal/src/pages/proposals/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import Tokens from '@/screens/proposals';
import type { NextPage } from 'next';
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-jackal/src/pages/proposals/[id].tsx | apps/web-jackal/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-jackal/src/pages/blocks/index.tsx | apps/web-jackal/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-jackal/src/pages/blocks/[height].tsx | apps/web-jackal/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-jackal/src/pages/accounts/[address].tsx | apps/web-jackal/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-jackal/src/pages/transactions/index.tsx | apps/web-jackal/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-jackal/src/pages/transactions/[tx].tsx | apps/web-jackal/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/e2e/home.spec.ts | e2e/home.spec.ts | import { expect, test } from '@playwright/test';
import { interceptRoutes, waitForClick, waitForMenuItemClick, waitForReady } from './common';
test('home page', async ({ page, isMobile }) => {
await interceptRoutes(page);
await page.goto('.');
await waitForReady(page);
// Test a title
await expect(page).to... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/e2e/params.spec.ts | e2e/params.spec.ts | import { test } from '@playwright/test';
import { interceptRoutes, waitForMenuItemClick, waitForReady } from './common';
test('params page', async ({ page, isMobile }) => {
await interceptRoutes(page);
// Test params url
await page.goto(`.`);
await waitForReady(page);
await waitForMenuItemClick(
'ul > ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/e2e/proposals.spec.ts | e2e/proposals.spec.ts | import { test } from '@playwright/test';
import { interceptRoutes, waitForMenuItemClick, waitForReady } from './common';
test('proposals list page', async ({ page }) => {
await interceptRoutes(page);
await page.goto('./proposals');
await waitForReady(page);
});
test('proposals #1', async ({ page, isMobile }) =... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.