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-emoney/src/components/msg/market/cancel_replace_limit_order/index.tsx
apps/web-emoney/src/components/msg/market/cancel_replace_limit_order/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgCancelReplaceLimitOrder from '@/models/msg/market/msg_cancel_replace_limit_order'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; impo...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/msg/market/cancel_replace_market_order/index.test.tsx
apps/web-emoney/src/components/msg/market/cancel_replace_market_order/index.test.tsx
import renderer from 'react-test-renderer'; import CancelReplaceMarketOrder from '@/components/msg/market/cancel_replace_market_order'; import MsgCancelReplaceMarketOrder from '@/models/msg/market/msg_cancel_replace_market_order'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== /...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/msg/market/cancel_replace_market_order/index.tsx
apps/web-emoney/src/components/msg/market/cancel_replace_market_order/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgCancelReplaceMarketOrder from '@/models/msg/market/msg_cancel_replace_market_order'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; 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-emoney/src/components/msg/market/cancel_order/index.test.tsx
apps/web-emoney/src/components/msg/market/cancel_order/index.test.tsx
import renderer from 'react-test-renderer'; import CancelOrder from '@/components/msg/market/cancel_order'; import MsgCancelOrder from '@/models/msg/market/msg_cancel_order'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock(...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/msg/market/cancel_order/index.tsx
apps/web-emoney/src/components/msg/market/cancel_order/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgCancelOrder from '@/models/msg/market/msg_cancel_order'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const CancelOrder: FC<{ messa...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/msg/authority/create_issuer/index.test.tsx
apps/web-emoney/src/components/msg/authority/create_issuer/index.test.tsx
import renderer from 'react-test-renderer'; import CreateIssuer from '@/components/msg/authority/create_issuer'; import MsgCreateIssuer from '@/models/msg/authority/msg_create_issuer'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/components/msg/authority/create_issuer/index.tsx
apps/web-emoney/src/components/msg/authority/create_issuer/index.tsx
import Name from '@/components/name'; import MsgCreateIssuer from '@/models/msg/authority/msg_create_issuer'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import useAppTranslation from '@/hooks/useAppTranslat...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/inflation_rate_params.ts
apps/web-emoney/src/models/inflation_rate_params.ts
import * as R from 'ramda'; class InflationRateParams { public inflation: { denom: string; inflation: string; }[]; constructor(payload: object) { this.inflation = R.pathOr([], ['inflation'], payload); } static fromJson(data: MsgCoin[]): InflationRateParams { return { inflation: data.m...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/index.ts
apps/web-emoney/src/models/index.ts
// ================================ // Transaction Message Types // ================================ export { default as MsgCreateIssuer } from '@/models/msg/authority/msg_create_issuer'; export { default as MsgBurnTokens } from '@/models/msg/liquidity_provider/msg_burn_tokens'; export { default as MsgMintTokens } 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-emoney/src/models/gas_price_params.ts
apps/web-emoney/src/models/gas_price_params.ts
import * as R from 'ramda'; class GasPriceParams { public gasPrice: MsgCoin[]; constructor(payload: object) { this.gasPrice = R.pathOr<MsgCoin[]>([], ['gasPrice'], payload); } static fromJson(data: MsgCoin[]): GasPriceParams { return { gasPrice: data.map((x) => ({ denom: R.pathOr('', ['...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/msg/types.ts
apps/web-emoney/src/models/msg/types.ts
import type { BaseCategories, Log } from 'ui/models/msg/types'; export type CustomCategories = 'authority' | 'market' | 'liquidityProvider'; // custom modules export type Categories = BaseCategories | CustomCategories; export type { Log };
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/msg/liquidity_provider/msg_mint_tokens.ts
apps/web-emoney/src/models/msg/liquidity_provider/msg_mint_tokens.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgMintTokens { public category: Categories; public type: string; public json: object; public liquidityProvider: string; public amount: MsgCoin[]; constructor(payload: object) { this.category = 'liquidityProvid...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/msg/liquidity_provider/msg_burn_tokens.ts
apps/web-emoney/src/models/msg/liquidity_provider/msg_burn_tokens.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgBurnTokens { public category: Categories; public type: string; public json: object; public liquidityProvider: string; public amount: MsgCoin[]; constructor(payload: object) { this.category = 'liquidityProvid...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/msg/market/msg_add_market_order.ts
apps/web-emoney/src/models/msg/market/msg_add_market_order.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgAddMarketOrder { public category: Categories; public type: string; public json: object; public owner: string; public clientOrderId: string; public timeInForce: 'Unspecified' | 'GoodTillCancel' | 'ImmediateOrCanc...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/msg/market/msg_cancel_order.ts
apps/web-emoney/src/models/msg/market/msg_cancel_order.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgCancelOrder { public category: Categories; public type: string; public json: object; public owner: string; public clientOrderId: string; constructor(payload: object) { this.category = 'market'; this.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-emoney/src/models/msg/market/msg_add_limit_order.ts
apps/web-emoney/src/models/msg/market/msg_add_limit_order.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgAddLimitOrder { public category: Categories; public type: string; public json: object; public owner: string; public clientOrderId: string; public timeInForce: 'Unspecified' | 'GoodTillCancel' | 'ImmediateOrCance...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/msg/market/msg_cancel_replace_market_order.ts
apps/web-emoney/src/models/msg/market/msg_cancel_replace_market_order.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgCancelReplaceMarketOrder { public category: Categories; public type: string; public json: object; public owner: string; public originalClientOrderId: string; public newClientOrderId: string; public timeInForc...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/msg/market/msg_cancel_replace_limit_order.ts
apps/web-emoney/src/models/msg/market/msg_cancel_replace_limit_order.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgCancelReplaceLimitOrder { public category: Categories; public type: string; public json: object; public owner: string; public originalClientOrderId: string; public newClientOrderId: string; public timeInForce...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/models/msg/authority/msg_create_issuer.test.tsx
apps/web-emoney/src/models/msg/authority/msg_create_issuer.test.tsx
import MsgCreateIssuer from '@/models/msg/authority/msg_create_issuer'; // ================================== // unit tests // ================================== describe('model: MsgCreateIssuer', () => { it('test data result', () => { const result = MsgCreateIssuer.fromJson({ '@type': 'a random 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-emoney/src/models/msg/authority/msg_create_issuer.ts
apps/web-emoney/src/models/msg/authority/msg_create_issuer.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgCreateIssuer { public category: Categories; public type: string; public json: object; public authority: string; public issuer: string; public denominations: string[]; constructor(payload: object) { this.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-emoney/src/recoil/market/hooks.ts
apps/web-emoney/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-emoney/src/screens/params/index.tsx
apps/web-emoney/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-emoney/src/screens/params/utils.tsx
apps/web-emoney/src/screens/params/utils.tsx
import type { Distribution, GasPrice, Gov, InflationRate, Minting, Slashing, Staking, } from '@/screens/params/types'; import { nanoToSeconds, secondsToDays } from '@/utils/time'; import type { TFunction } from '@/hooks/useAppTranslation'; import numeral from 'numeral'; const convertBySeconds = (seconds:...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/screens/params/types.ts
apps/web-emoney/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-emoney/src/screens/params/hooks.ts
apps/web-emoney/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, GovParams, MintParams, SlashingParams, StakingParams } from '@/mode...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/screens/app/components/inner_app/hooks.ts
apps/web-emoney/src/screens/app/components/inner_app/hooks.ts
import useAppTranslation from '@/hooks/useAppTranslation'; import { useEffect, useState } from 'react'; import { toast } from 'react-toastify'; import dayjs from '@/utils/dayjs'; import { useLatestBlockTimestampLazyQuery } from '@/graphql/types/general_types'; const isClient = typeof window === 'object'; export funct...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/screens/validators/components/list/hooks.ts
apps/web-emoney/src/screens/validators/components/list/hooks.ts
import Big from 'big.js'; import numeral from 'numeral'; import * as R from 'ramda'; import { SyntheticEvent, useCallback, useState } from 'react'; import chainConfig from '@/chainConfig'; import { useValidatorsQuery, ValidatorsQuery } from '@/graphql/types/general_types'; import { SlashingParams } from '@/models'; imp...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-emoney/src/screens/block_details/components/signatures/components/mobile/index.tsx
apps/web-emoney/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-archway/jest.setup.ts
apps/web-archway/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-archway/jest.config.ts
apps/web-archway/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-archway/next-env.d.ts
apps/web-archway/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-archway/src/graphql/types/general_types.ts
apps/web-archway/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-archway/src/graphql/general/account_details_documents.ts
apps/web-archway/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-archway/src/graphql/general/validator_details_documents.ts
apps/web-archway/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-archway/src/pages/_error.tsx
apps/web-archway/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-archway/src/pages/_app.tsx
apps/web-archway/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-archway/src/pages/404.tsx
apps/web-archway/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-archway/src/pages/index.tsx
apps/web-archway/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-archway/src/pages/[dtag].tsx
apps/web-archway/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-archway/src/pages/_document.tsx
apps/web-archway/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-archway/src/pages/params/index.tsx
apps/web-archway/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-archway/src/pages/server-sitemap.xml/index.tsx
apps/web-archway/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-archway/src/pages/validators/[address].tsx
apps/web-archway/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-archway/src/pages/validators/index.tsx
apps/web-archway/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-archway/src/pages/proposals/index.tsx
apps/web-archway/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-archway/src/pages/proposals/[id].tsx
apps/web-archway/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-archway/src/pages/blocks/index.tsx
apps/web-archway/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-archway/src/pages/blocks/[height].tsx
apps/web-archway/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-archway/src/pages/accounts/[address].tsx
apps/web-archway/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-archway/src/pages/transactions/index.tsx
apps/web-archway/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-archway/src/pages/transactions/[tx].tsx
apps/web-archway/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-quicksilver/jest.setup.ts
apps/web-quicksilver/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-quicksilver/jest.config.ts
apps/web-quicksilver/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-quicksilver/next-env.d.ts
apps/web-quicksilver/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-quicksilver/src/graphql/types/general_types.ts
apps/web-quicksilver/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-quicksilver/src/graphql/general/account_details_documents.ts
apps/web-quicksilver/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-quicksilver/src/graphql/general/validator_details_documents.ts
apps/web-quicksilver/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-quicksilver/src/pages/_error.tsx
apps/web-quicksilver/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-quicksilver/src/pages/_app.tsx
apps/web-quicksilver/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-quicksilver/src/pages/404.tsx
apps/web-quicksilver/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-quicksilver/src/pages/index.tsx
apps/web-quicksilver/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-quicksilver/src/pages/[dtag].tsx
apps/web-quicksilver/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-quicksilver/src/pages/_document.tsx
apps/web-quicksilver/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-quicksilver/src/pages/params/index.tsx
apps/web-quicksilver/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-quicksilver/src/pages/server-sitemap.xml/index.tsx
apps/web-quicksilver/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-quicksilver/src/pages/validators/[address].tsx
apps/web-quicksilver/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-quicksilver/src/pages/validators/index.tsx
apps/web-quicksilver/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-quicksilver/src/pages/proposals/index.tsx
apps/web-quicksilver/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-quicksilver/src/pages/proposals/[id].tsx
apps/web-quicksilver/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-quicksilver/src/pages/blocks/index.tsx
apps/web-quicksilver/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-quicksilver/src/pages/blocks/[height].tsx
apps/web-quicksilver/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-quicksilver/src/pages/accounts/[address].tsx
apps/web-quicksilver/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-quicksilver/src/pages/transactions/index.tsx
apps/web-quicksilver/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-quicksilver/src/pages/transactions/[tx].tsx
apps/web-quicksilver/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-quicksilver/src/recoil/market/hooks.ts
apps/web-quicksilver/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-regen/jest.setup.ts
apps/web-regen/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-regen/jest.config.ts
apps/web-regen/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-regen/next-env.d.ts
apps/web-regen/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-regen/src/graphql/types/general_types.ts
apps/web-regen/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-regen/src/graphql/general/account_details_documents.ts
apps/web-regen/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-regen/src/graphql/general/validator_details_documents.ts
apps/web-regen/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-regen/src/pages/_error.tsx
apps/web-regen/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-regen/src/pages/_app.tsx
apps/web-regen/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-regen/src/pages/404.tsx
apps/web-regen/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-regen/src/pages/index.tsx
apps/web-regen/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-regen/src/pages/[dtag].tsx
apps/web-regen/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-regen/src/pages/_document.tsx
apps/web-regen/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-regen/src/pages/params/index.tsx
apps/web-regen/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-regen/src/pages/server-sitemap.xml/index.tsx
apps/web-regen/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-regen/src/pages/validators/[address].tsx
apps/web-regen/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-regen/src/pages/validators/index.tsx
apps/web-regen/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-regen/src/pages/proposals/index.tsx
apps/web-regen/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-regen/src/pages/proposals/[id].tsx
apps/web-regen/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-regen/src/pages/blocks/index.tsx
apps/web-regen/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-regen/src/pages/blocks/[height].tsx
apps/web-regen/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-regen/src/pages/accounts/[address].tsx
apps/web-regen/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-regen/src/pages/transactions/index.tsx
apps/web-regen/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-regen/src/pages/transactions/[tx].tsx
apps/web-regen/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-regen/src/components/nav/components/title_bar/styles.ts
apps/web-regen/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-regen/src/components/nav/components/desktop/index.tsx
apps/web-regen/src/components/nav/components/desktop/index.tsx
import AppBar from '@mui/material/AppBar'; import ClickAwayListener from '@mui/material/ClickAwayListener'; import Drawer from '@mui/material/Drawer'; import { FC } from 'react'; import { useRecoilValue } from 'recoil'; import BigDipperLogoRed from 'shared-utils/assets/big-dipper-red.svg'; import BigDipperLogoWhite fro...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false