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-osmosis/src/screens/params/types.ts
apps/web-osmosis/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-osmosis/src/screens/params/hooks.ts
apps/web-osmosis/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-osmosis/src/screens/proposal_details/types.ts
apps/web-osmosis/src/screens/proposal_details/types.ts
export interface OverviewType { title: string; id: number; proposer: string; description: string; metadata: string; status: string; submitTime: string; depositEndTime: string; votingStartTime: string | null; votingEndTime: string | null; content: { recipient: string; amount: Array<{ ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-osmosis/src/screens/proposal_details/hooks.ts
apps/web-osmosis/src/screens/proposal_details/hooks.ts
import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useCallback, useState } from 'react'; import type { ProposalState } from '@/screens/proposal_details/types'; import { ProposalDetailsQuery, useProposalDetailsQuery } from '@/graphql/types/general_types'; // ========================= // overv...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-osmosis/src/screens/proposal_details/components/votes_graph/hooks.ts
apps/web-osmosis/src/screens/proposal_details/components/votes_graph/hooks.ts
import Big from 'big.js'; import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useCallback, useState } from 'react'; import chainConfig from '@/chainConfig'; import { ProposalDetailsTallyQuery, useProposalDetailsTallyQuery, } from '@/graphql/types/general_types'; import type { VotesGraphSta...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-osmosis/src/screens/proposal_details/components/overview/index.tsx
apps/web-osmosis/src/screens/proposal_details/components/overview/index.tsx
import Divider from '@mui/material/Divider'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numeral'; import * as R from 'ramda'; import { FC, useMemo, useCallback } from 'react'; import { useRecoilValue } from 'recoil'; import Box 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-osmosis/src/screens/proposal_details/components/overview/styles.ts
apps/web-osmosis/src/screens/proposal_details/components/overview/styles.ts
import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme) => ({ root: { '& .label': { color: theme.palette.custom.fonts.fontThree, }, '& .content': { marginBottom: theme.spacing(2), display: 'block', [theme.breakpoints.up('lg')]: { display: 'flex',...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-osmosis/src/screens/proposal_details/components/overview/components/metadata_loader/index.tsx
apps/web-osmosis/src/screens/proposal_details/components/overview/components/metadata_loader/index.tsx
import React, { useEffect, useState } from 'react'; import Loading from '@/components/loading'; interface MetadataLoaderProps { metadata: string; } // Checks if a string is a valid URL const isValidUrl = (url: string) => { const pattern = /^(ftp|http|https|ipfs):\/\/[^ "]+$/; return pattern.test(url); }; // Ch...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-osmosis/src/screens/validators/components/list/components/desktop/utils.tsx
apps/web-osmosis/src/screens/validators/components/list/components/desktop/utils.tsx
import ConditionExplanation from '@/components/condition_explanation'; import InfoPopover from '@/components/info_popover'; import Typography from '@mui/material/Typography'; import type { TFunction } from '@/hooks/useAppTranslation'; import { ReactNode } from 'react'; export const fetchColumns = ( t: TFunction ): {...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/jest.setup.ts
apps/web-bitsong/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-bitsong/jest.config.ts
apps/web-bitsong/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-bitsong/next-env.d.ts
apps/web-bitsong/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-bitsong/declarations.d.ts
apps/web-bitsong/declarations.d.ts
declare module '*.png'; declare module '*.jpg'; declare module '*.jpeg'; declare module '*.svg'; declare module '*.svg?url'; declare module '*.gif'; declare module '*.woff2'; type Override<T1, T2> = Omit<T1, keyof T2> & T2; interface ComponentDefault { className?: string; } interface AvatarName extends ComponentDef...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/graphql/types/general_types.ts
apps/web-bitsong/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-bitsong/src/graphql/general/account_details_documents.ts
apps/web-bitsong/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-bitsong/src/graphql/general/validator_details_documents.ts
apps/web-bitsong/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-bitsong/src/pages/_error.tsx
apps/web-bitsong/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-bitsong/src/pages/_app.tsx
apps/web-bitsong/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-bitsong/src/pages/404.tsx
apps/web-bitsong/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-bitsong/src/pages/index.tsx
apps/web-bitsong/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-bitsong/src/pages/[dtag].tsx
apps/web-bitsong/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-bitsong/src/pages/_document.tsx
apps/web-bitsong/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-bitsong/src/pages/params/index.tsx
apps/web-bitsong/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-bitsong/src/pages/server-sitemap.xml/index.tsx
apps/web-bitsong/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-bitsong/src/pages/validators/[address].tsx
apps/web-bitsong/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-bitsong/src/pages/validators/index.tsx
apps/web-bitsong/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-bitsong/src/pages/proposals/index.tsx
apps/web-bitsong/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-bitsong/src/pages/proposals/[id].tsx
apps/web-bitsong/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-bitsong/src/pages/blocks/index.tsx
apps/web-bitsong/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-bitsong/src/pages/blocks/[height].tsx
apps/web-bitsong/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-bitsong/src/pages/accounts/[address].tsx
apps/web-bitsong/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-bitsong/src/pages/transactions/index.tsx
apps/web-bitsong/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-bitsong/src/pages/transactions/[tx].tsx
apps/web-bitsong/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-bitsong/src/components/msg/utils.tsx
apps/web-bitsong/src/components/msg/utils.tsx
import * as COMPONENTS from '@/components/msg'; import Tag from '@/components/tag'; import * as MODELS from '@/models'; import type { Log } from '@/models/msg/types'; import isKeyOf from '@/utils/isKeyOf'; import type { TFunction } from '@/hooks/useAppTranslation'; import * as R from 'ramda'; import { FC } from 'react'...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/index.ts
apps/web-bitsong/src/components/msg/index.ts
// ========================= // msg components // ========================= export { default as CancelAuction } from '@/components/msg/auction/cancel_auction'; export { default as CancelBid } from '@/components/msg/auction/cancel_bid'; export { default as EditAuction } from '@/components/msg/auction/edit_auction'; 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-bitsong/src/components/msg/auction/edit_auction/index.tsx
apps/web-bitsong/src/components/msg/auction/edit_auction/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import numeral from 'numeral'; import { FC } from 'react'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import MsgEditAuction from '@/models/msg/auction/msg_edit_auction'; import Name from '@/components/name'...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/auction/open_bid/index.tsx
apps/web-bitsong/src/components/msg/auction/open_bid/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import numeral from 'numeral'; import { FC } from 'react'; import Name from '@/components/name'; import MsgOpenBid from '@/models/msg/auction/msg_open_bid'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; 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-bitsong/src/components/msg/auction/cancel_auction/index.tsx
apps/web-bitsong/src/components/msg/auction/cancel_auction/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import numeral from 'numeral'; import { FC } from 'react'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import MsgCancelAuction from '@/models/msg/auction/msg_cancel_auction'; import Name from '@/components/n...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/auction/cancel_bid/index.tsx
apps/web-bitsong/src/components/msg/auction/cancel_bid/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import numeral from 'numeral'; import { FC } from 'react'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import MsgCancelBid from '@/models/msg/auction/msg_cancel_bid'; import Name from '@/components/name'; 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-bitsong/src/components/msg/auction/open_auction/index.tsx
apps/web-bitsong/src/components/msg/auction/open_auction/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgOpenAuction from '@/models/msg/auction/msg_open_auction'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const OpenAuction: FC<{ mess...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/auction/withdraw/index.tsx
apps/web-bitsong/src/components/msg/auction/withdraw/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import numeral from 'numeral'; import { FC } from 'react'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import MsgWithdraw from '@/models/msg/auction/msg_withdraw'; import Name from '@/components/name'; cons...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/fantoken/edit_fan_token/index.tsx
apps/web-bitsong/src/components/msg/fantoken/edit_fan_token/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgEditFanToken from '@/models/msg/fantoken/msg_edit_fan_token'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const EditFanToken: FC<{...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/fantoken/burn_fan_token/index.tsx
apps/web-bitsong/src/components/msg/fantoken/burn_fan_token/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgBurnFanToken from '@/models/msg/fantoken/msg_burn_fan_token'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const BurnFanToken: FC<{...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/fantoken/transfer_fan_token/index.tsx
apps/web-bitsong/src/components/msg/fantoken/transfer_fan_token/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgTransferFanTokenOwner from '@/models/msg/fantoken/msg_transfer_fan_token'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const Trans...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/fantoken/issue_fan_token/index.tsx
apps/web-bitsong/src/components/msg/fantoken/issue_fan_token/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgIssueFanToken from '@/models/msg/fantoken/msg_issue_fan_token'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const IssueFanToken: F...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/fantoken/mint_fan_token/index.tsx
apps/web-bitsong/src/components/msg/fantoken/mint_fan_token/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgMintFanToken from '@/models/msg/fantoken/msg_mint_fan_token'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const MintFanToken: FC<{...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/burn_nft/index.test.tsx
apps/web-bitsong/src/components/msg/nft/burn_nft/index.test.tsx
import renderer from 'react-test-renderer'; import BurnNFT from '@/components/msg/nft/burn_nft'; import MsgBurnNFT from '@/models/msg/nft/msg_burn_nft'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/components/name', ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/burn_nft/index.tsx
apps/web-bitsong/src/components/msg/nft/burn_nft/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgBurnNFT from '@/models/msg/nft/msg_burn_nft'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const BurnNFT: FC<{ message: MsgBurnNFT ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/edit_nft/index.test.tsx
apps/web-bitsong/src/components/msg/nft/edit_nft/index.test.tsx
import renderer from 'react-test-renderer'; import EditNFT from '@/components/msg/nft/edit_nft'; import MsgEditNFT from '@/models/msg/nft/msg_edit_nft'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/components/name', (...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/edit_nft/index.tsx
apps/web-bitsong/src/components/msg/nft/edit_nft/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgEditNFT from '@/models/msg/nft/msg_edit_nft'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const EditNFT: FC<{ message: MsgEditNFT ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/transfer_nft/index.test.tsx
apps/web-bitsong/src/components/msg/nft/transfer_nft/index.test.tsx
import renderer from 'react-test-renderer'; import TransferNFT from '@/components/msg/nft/transfer_nft'; import MsgTransferNFT from '@/models/msg/nft/msg_transfer_nft'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/com...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/transfer_nft/index.tsx
apps/web-bitsong/src/components/msg/nft/transfer_nft/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgTransferNFT from '@/models/msg/nft/msg_transfer_nft'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const TransferNFT: FC<{ message:...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/mint_nft/index.test.tsx
apps/web-bitsong/src/components/msg/nft/mint_nft/index.test.tsx
import renderer from 'react-test-renderer'; import MintNFT from '@/components/msg/nft/mint_nft'; import MsgMintNFT from '@/models/msg/nft/msg_mint_nft'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/components/name', (...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/mint_nft/index.tsx
apps/web-bitsong/src/components/msg/nft/mint_nft/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgMintNFT from '@/models/msg/nft/msg_mint_nft'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const MintNFT: FC<{ message: MsgMintNFT ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/issue_denom/index.test.tsx
apps/web-bitsong/src/components/msg/nft/issue_denom/index.test.tsx
import renderer from 'react-test-renderer'; import IssueDenom from '@/components/msg/nft/issue_denom'; import MsgIssueDenom from '@/models/msg/nft/msg_issue_denom'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/compone...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/issue_denom/index.tsx
apps/web-bitsong/src/components/msg/nft/issue_denom/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import MsgIssueDenom from '@/models/msg/nft/msg_issue_denom'; import ListNames from '@/components/msg/nft/issue_denom/components/list_names'; const IssueDenom: FC<{ message: MsgIssueDenom }> = (...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/issue_denom/components/index.ts
apps/web-bitsong/src/components/msg/nft/issue_denom/components/index.ts
import ListNames from '@/components/msg/nft/issue_denom/components/list_names'; export { ListNames };
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/components/msg/nft/issue_denom/components/list_names/index.test.tsx
apps/web-bitsong/src/components/msg/nft/issue_denom/components/list_names/index.test.tsx
import { ComponentProps } from 'react'; import renderer from 'react-test-renderer'; import ListNames from '@/components/msg/nft/issue_denom/components/list_names'; import type Name from '@/components/name'; 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-bitsong/src/components/msg/nft/issue_denom/components/list_names/index.tsx
apps/web-bitsong/src/components/msg/nft/issue_denom/components/list_names/index.tsx
import useAppTranslation from '@/hooks/useAppTranslation'; import { FC } from 'react'; import Name from '@/components/name'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; type CreatorNameProps = { address: string; addresses: string[]; isLast: boolean; is2ndLast: boolean; }; const CreatorName: FC...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/index.ts
apps/web-bitsong/src/models/index.ts
// ================================ // Transaction Message Types // ================================ export { default as MsgCancelAuction } from '@/models/msg/auction/msg_cancel_auction'; export { default as MsgCancelBid } from '@/models/msg/auction/msg_cancel_bid'; export { default as MsgEditAuction } from '@/models/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-bitsong/src/models/msg/types.ts
apps/web-bitsong/src/models/msg/types.ts
import type { BaseCategories, Log } from 'ui/models/msg/types'; export type CustomCategories = 'nft' | 'auction' | 'fantoken'; // 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-bitsong/src/models/msg/auction/msg_cancel_bid.ts
apps/web-bitsong/src/models/msg/auction/msg_cancel_bid.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgCancelBid { public category: Categories; public type: string; public json: object; public auctionId: number; public bidder: string; constructor(payload: object) { this.category = 'auction'; this.type = R...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/msg/auction/msg_open_bid.ts
apps/web-bitsong/src/models/msg/auction/msg_open_bid.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgOpenBid { public category: Categories; public type: string; public json: object; public auctionId: number; public bidder: string; public bidAmount: MsgCoin; constructor(payload: object) { this.category = ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/msg/auction/msg_cancel_auction.ts
apps/web-bitsong/src/models/msg/auction/msg_cancel_auction.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgCancelAuction { public category: Categories; public type: string; public json: object; public owner: string; public id: number; constructor(payload: object) { this.category = 'auction'; this.type = R.pat...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/msg/auction/msg_withdraw.ts
apps/web-bitsong/src/models/msg/auction/msg_withdraw.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgWithdraw { public category: Categories; public type: string; public json: object; public recipient: string; public auctionId: number; constructor(payload: object) { this.category = 'auction'; 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-bitsong/src/models/msg/auction/msg_open_auction.ts
apps/web-bitsong/src/models/msg/auction/msg_open_auction.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgOpenAuction { public category: Categories; public type: string; public json: object; public owner: string; public nftId: string; constructor(payload: object) { this.category = 'auction'; this.type = R.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-bitsong/src/models/msg/auction/msg_edit_auction.ts
apps/web-bitsong/src/models/msg/auction/msg_edit_auction.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgEditAuction { public category: Categories; public type: string; public json: object; public owner: string; public id: number; constructor(payload: object) { this.category = 'auction'; this.type = R.pathO...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/msg/fantoken/msg_burn_fan_token.ts
apps/web-bitsong/src/models/msg/fantoken/msg_burn_fan_token.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgBurnFanToken { public category: Categories; public type: string; public json: object; public sender: string; constructor(payload: object) { this.category = 'fantoken'; this.type = R.pathOr('', ['type'], pay...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/msg/fantoken/msg_transfer_fan_token.ts
apps/web-bitsong/src/models/msg/fantoken/msg_transfer_fan_token.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgTransferFanTokenOwner { public category: Categories; public type: string; public json: object; public symbol: string; public srcOwner: string; public dstOwner: string; constructor(payload: object) { this....
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/msg/fantoken/msg_issue_fan_token.ts
apps/web-bitsong/src/models/msg/fantoken/msg_issue_fan_token.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgIssueFanToken { public category: Categories; public type: string; public json: object; public owner: string; public name: string; public maxSupply: string; constructor(payload: object) { this.category = '...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/msg/fantoken/msg_edit_fan_token.ts
apps/web-bitsong/src/models/msg/fantoken/msg_edit_fan_token.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgEditFanToken { public category: Categories; public type: string; public json: object; public owner: string; constructor(payload: object) { this.category = 'fantoken'; this.type = R.pathOr('', ['type'], payl...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/msg/fantoken/msg_mint_fan_token.ts
apps/web-bitsong/src/models/msg/fantoken/msg_mint_fan_token.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgMintFanToken { public category: Categories; public type: string; public json: object; public recipient: string; constructor(payload: object) { this.category = 'fantoken'; this.type = R.pathOr('', ['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-bitsong/src/models/msg/nft/msg_edit_nft.ts
apps/web-bitsong/src/models/msg/nft/msg_edit_nft.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgEditNFT { public category: Categories; public type: string; public json: object; public sender: string; public id: string; constructor(payload: object) { this.category = 'nft'; this.type = 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-bitsong/src/models/msg/nft/msg_burn_nft.ts
apps/web-bitsong/src/models/msg/nft/msg_burn_nft.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgBurnNFT { public category: Categories; public type: string; public json: object; public sender: string; public id: string; constructor(payload: object) { this.category = 'nft'; this.type = 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-bitsong/src/models/msg/nft/msg_mint_nft.ts
apps/web-bitsong/src/models/msg/nft/msg_mint_nft.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgMintNFT { public category: Categories; public type: string; public json: object; public sender: string; public id: string; constructor(payload: object) { this.category = 'nft'; this.type = 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-bitsong/src/models/msg/nft/msg_transfer_nft.ts
apps/web-bitsong/src/models/msg/nft/msg_transfer_nft.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgTransferNFT { public category: Categories; public type: string; public json: object; public sender: string; public id: string; public recipient: string; constructor(payload: object) { this.category = 'nft...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-bitsong/src/models/msg/nft/msg_issue_denom.ts
apps/web-bitsong/src/models/msg/nft/msg_issue_denom.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgIssueDenom { public category: Categories; public type: string; public json: object; public creators: string[]; constructor(payload: object) { this.category = 'nft'; this.type = R.pathOr('', ['type'], payloa...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/jest.setup.ts
apps/web-provenance/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-provenance/jest.config.ts
apps/web-provenance/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-provenance/next-env.d.ts
apps/web-provenance/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-provenance/src/graphql/types/general_types.ts
apps/web-provenance/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-provenance/src/graphql/general/account_details_documents.ts
apps/web-provenance/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-provenance/src/graphql/general/validator_details_documents.ts
apps/web-provenance/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-provenance/src/pages/_error.tsx
apps/web-provenance/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-provenance/src/pages/_app.tsx
apps/web-provenance/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-provenance/src/pages/404.tsx
apps/web-provenance/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-provenance/src/pages/index.tsx
apps/web-provenance/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-provenance/src/pages/[dtag].tsx
apps/web-provenance/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-provenance/src/pages/_document.tsx
apps/web-provenance/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-provenance/src/pages/params/index.tsx
apps/web-provenance/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-provenance/src/pages/server-sitemap.xml/index.tsx
apps/web-provenance/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-provenance/src/pages/validators/[address].tsx
apps/web-provenance/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-provenance/src/pages/validators/index.tsx
apps/web-provenance/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-provenance/src/pages/proposals/index.tsx
apps/web-provenance/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-provenance/src/pages/proposals/[id].tsx
apps/web-provenance/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-provenance/src/pages/blocks/index.tsx
apps/web-provenance/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-provenance/src/pages/blocks/[height].tsx
apps/web-provenance/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-provenance/src/pages/assets/index.tsx
apps/web-provenance/src/pages/assets/index.tsx
import withGetStaticProps from '@/pages/withGetStaticProps'; import Assets from '@/screens/assets'; import type { NextPage } from 'next'; import nextI18NextConfig from '../../../next-i18next.config'; const AssetsPage: NextPage = () => <Assets />; export const getStaticProps = withGetStaticProps(nextI18NextConfig, 'as...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-provenance/src/pages/accounts/[address].tsx
apps/web-provenance/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-provenance/src/pages/transactions/index.tsx
apps/web-provenance/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