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-likecoin/src/pages/validators/index.tsx
apps/web-likecoin/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-likecoin/src/pages/proposals/index.tsx
apps/web-likecoin/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-likecoin/src/pages/proposals/[id].tsx
apps/web-likecoin/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-likecoin/src/pages/blocks/index.tsx
apps/web-likecoin/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-likecoin/src/pages/blocks/[height].tsx
apps/web-likecoin/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-likecoin/src/pages/accounts/[address].tsx
apps/web-likecoin/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-likecoin/src/pages/transactions/index.tsx
apps/web-likecoin/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-likecoin/src/pages/transactions/[tx].tsx
apps/web-likecoin/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-likecoin/src/components/nav/components/index.ts
apps/web-likecoin/src/components/nav/components/index.ts
export { default as Desktop } from '@/components/nav/components/desktop'; export { default as MenuItems } from '@/components/nav/components/menu_items'; export { default as Mobile } from '@/components/nav/components/mobile'; export { default as Networks } from '@/components/nav/components/networks'; export { default as...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/components/nav/components/mobile/index.tsx
apps/web-likecoin/src/components/nav/components/mobile/index.tsx
import { FC } from 'react'; import Menu from '@/components/nav/components/mobile/components/menu'; import Navbar from '@/components/nav/components/mobile/components/navbar'; import { useMobile } from '@/components/nav/components/mobile/hooks'; import useStyles from '@/components/nav/components/mobile/styles'; import Ne...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/components/nav/components/desktop/index.tsx
apps/web-likecoin/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
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/components/nav/components/search_bar/hooks.ts
apps/web-likecoin/src/components/nav/components/search_bar/hooks.ts
import chainConfig from '@/chainConfig'; import { readValidator } from '@/recoil/validators'; import { ACCOUNT_DETAILS, BLOCK_DETAILS, PROFILE_DETAILS, TRANSACTION_DETAILS, VALIDATOR_DETAILS, } from '@/utils/go_to_page'; import { isValidAddress } from '@/utils/prefix_convert'; import type { TFunction } 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-likecoin/src/components/msg/utils.tsx
apps/web-likecoin/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-likecoin/src/components/msg/index.ts
apps/web-likecoin/src/components/msg/index.ts
// ========================= // msg components // ========================= export { default as CreateIscnRecord } from '@/components/msg/iscn/create_iscn_record'; export { default as IscnChangeOwnership } from '@/components/msg/iscn/iscn_change_ownership'; export { default as UpdateIscnRecord } from '@/components/msg/...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/components/msg/iscn/create_iscn_record/index.test.tsx
apps/web-likecoin/src/components/msg/iscn/create_iscn_record/index.test.tsx
import renderer from 'react-test-renderer'; import CreateIscnRecord from '@/components/msg/iscn/create_iscn_record'; import MsgCreateIscnRecord from '@/models/msg/iscn/msg_create_iscn_record'; 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-likecoin/src/components/msg/iscn/create_iscn_record/index.tsx
apps/web-likecoin/src/components/msg/iscn/create_iscn_record/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgCreateIscnRecord from '@/models/msg/iscn/msg_create_iscn_record'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const CreateIscnReco...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/components/msg/iscn/update_iscn_record/index.test.tsx
apps/web-likecoin/src/components/msg/iscn/update_iscn_record/index.test.tsx
import renderer from 'react-test-renderer'; import UpdateIscnRecord from '@/components/msg/iscn/update_iscn_record'; import MsgUpdateIscnRecord from '@/models/msg/iscn/msg_update_iscn_record'; 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-likecoin/src/components/msg/iscn/update_iscn_record/index.tsx
apps/web-likecoin/src/components/msg/iscn/update_iscn_record/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 MsgUpdateIscnRecord from '@/models/msg/iscn/msg_update_iscn_record'; import Name from '@/componen...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/components/msg/iscn/iscn_change_ownership/index.test.tsx
apps/web-likecoin/src/components/msg/iscn/iscn_change_ownership/index.test.tsx
import renderer from 'react-test-renderer'; import IscnChangeOwnership from '@/components/msg/iscn/iscn_change_ownership'; import MsgChangeIscnRecordOwnership from '@/models/msg/iscn/msg_change_iscn_record_ownership'; 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-likecoin/src/components/msg/iscn/iscn_change_ownership/index.tsx
apps/web-likecoin/src/components/msg/iscn/iscn_change_ownership/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 MsgChangeIscnRecordOwnership from '@/models/msg/iscn/msg_change_iscn_record_ownership'; import Na...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/models/iscn_params.ts
apps/web-likecoin/src/models/iscn_params.ts
import numeral from 'numeral'; import * as R from 'ramda'; class IscnParams { public registryName: string; public feePerByte: { denom: string; amount: string; }; constructor(payload: object) { this.registryName = R.pathOr('', ['registryName'], payload); this.feePerByte = R.pathOr({ denom: '',...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/models/index.ts
apps/web-likecoin/src/models/index.ts
// ================================ // Transaction Message Types // ================================ export { default as MsgChangeIscnRecordOwnership } from '@/models/msg/iscn/msg_change_iscn_record_ownership'; export { default as MsgCreateIscnRecord } from '@/models/msg/iscn/msg_create_iscn_record'; export { default a...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/models/msg/types.ts
apps/web-likecoin/src/models/msg/types.ts
import type { BaseCategories, Log } from 'ui/models/msg/types'; export type CustomCategories = 'iscn'; 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-likecoin/src/models/msg/iscn/msg_create_iscn_record.ts
apps/web-likecoin/src/models/msg/iscn/msg_create_iscn_record.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgCreateIscnRecord { public category: Categories; public type: string; public json: object; public from: string; public record: { recordNotes: string; contentFingerprints: string[]; stakeholders: object[]...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/models/msg/iscn/msg_change_iscn_record_ownership.ts
apps/web-likecoin/src/models/msg/iscn/msg_change_iscn_record_ownership.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgChangeIscnRecordOwnership { public category: Categories; public type: string; public json: object; public from: string; public iscnId: string; public newOwner: 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-likecoin/src/models/msg/iscn/msg_update_iscn_record.ts
apps/web-likecoin/src/models/msg/iscn/msg_update_iscn_record.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgUpdateIscnRecord { public category: Categories; public type: string; public json: object; public from: string; public iscnId: string; public record: { recordNotes: string; contentFingerprints: string[]; ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/utils/go_to_page/index.ts
apps/web-likecoin/src/utils/go_to_page/index.ts
export { HOME, BLOCKS, BLOCK_DETAILS, VALIDATOR_DETAILS, VALIDATORS, TRANSACTIONS, TRANSACTION_DETAILS, PROPOSALS, PROPOSAL_DETAILS, ACCOUNT_DETAILS, PARAMS, PROFILE_DETAILS, ADDRESS_DETAILS, } from 'ui/utils/go_to_page'; export const ISCNS = '/iscns';
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/screens/params/index.tsx
apps/web-likecoin/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-likecoin/src/screens/params/utils.tsx
apps/web-likecoin/src/screens/params/utils.tsx
import type { Distribution, Gov, Iscn, 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: number, t: TFunction) => { 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-likecoin/src/screens/params/types.ts
apps/web-likecoin/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-likecoin/src/screens/params/hooks.ts
apps/web-likecoin/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-likecoin/src/screens/validator_details/components/transactions/hooks.ts
apps/web-likecoin/src/screens/validator_details/components/transactions/hooks.ts
import { useRouter } from 'next/router'; import * as R from 'ramda'; import { useState } from 'react'; import { convertMsgsToModels } from '@/components/msg/utils'; import { GetMessagesByAddressQuery, useGetMessagesByAddressQuery, } from '@/graphql/types/general_types'; import type { TransactionState } from '@/scre...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/screens/proposals/components/list/index.tsx
apps/web-likecoin/src/screens/proposals/components/list/index.tsx
import Divider from '@mui/material/Divider'; import Link from 'next/link'; import numeral from 'numeral'; import { FC } from 'react'; import AutoSizer from 'react-virtualized-auto-sizer'; import { ListChildComponentProps, VariableSizeList as List } from 'react-window'; import InfiniteLoader from 'react-window-infinite-...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/screens/blocks/components/mobile/index.tsx
apps/web-likecoin/src/screens/blocks/components/mobile/index.tsx
import AvatarName from '@/components/avatar_name'; import Loading from '@/components/loading'; import SingleBlockMobile from '@/components/single_block_mobile'; import Timestamp from '@/components/Timestamp'; import { useList, useListRow } from '@/hooks/use_react_window'; import { useProfileRecoil } from '@/recoil/prof...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/screens/blocks/components/desktop/index.tsx
apps/web-likecoin/src/screens/blocks/components/desktop/index.tsx
import AvatarName from '@/components/avatar_name'; import Loading from '@/components/loading'; import Timestamp from '@/components/Timestamp'; import { useGrid } from '@/hooks/use_react_window'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import useStyles from '@/screens/blocks/components/desktop/styles...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/screens/profile_details/components/connections/components/desktop/index.tsx
apps/web-likecoin/src/screens/profile_details/components/connections/components/desktop/index.tsx
import Table from '@mui/material/Table'; import TableBody from '@mui/material/TableBody'; import TableCell from '@mui/material/TableCell'; import TableHead from '@mui/material/TableHead'; import TableRow from '@mui/material/TableRow'; import useAppTranslation from '@/hooks/useAppTranslation'; import Link from 'next/lin...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/screens/home/components/data_blocks/index.tsx
apps/web-likecoin/src/screens/home/components/data_blocks/index.tsx
import useAppTranslation from '@/hooks/useAppTranslation'; import numeral from 'numeral'; import { FC } from 'react'; import SingleBlock from '@/screens/home/components/data_blocks/components/single_block'; import { useDataBlocks } from '@/screens/home/components/data_blocks/hooks'; import useStyles from '@/screens/hom...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/screens/home/components/data_blocks/hooks.ts
apps/web-likecoin/src/screens/home/components/data_blocks/hooks.ts
import numeral from 'numeral'; import { useState } from 'react'; import chainConfig from '@/chainConfig'; import { ActiveValidatorCountQuery, AverageBlockTimeQuery, TokenPriceListenerSubscription, useActiveValidatorCountQuery, useAverageBlockTimeQuery, useLatestBlockHeightListenerSubscription, useTokenPri...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-likecoin/src/screens/transaction_details/components/messages/index.tsx
apps/web-likecoin/src/screens/transaction_details/components/messages/index.tsx
import Divider from '@mui/material/Divider'; import FormControlLabel from '@mui/material/FormControlLabel'; import Switch from '@mui/material/Switch'; import Typography from '@mui/material/Typography'; import useAppTranslation from '@/hooks/useAppTranslation'; import { ChangeEvent, FC, LegacyRef } from 'react'; 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-band/jest.setup.ts
apps/web-band/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-band/jest.config.ts
apps/web-band/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-band/next-env.d.ts
apps/web-band/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-band/src/graphql/types/general_types.ts
apps/web-band/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-band/src/graphql/general/account_details_documents.ts
apps/web-band/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-band/src/graphql/general/validator_details_documents.ts
apps/web-band/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-band/src/pages/_error.tsx
apps/web-band/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-band/src/pages/_app.tsx
apps/web-band/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-band/src/pages/404.tsx
apps/web-band/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-band/src/pages/index.tsx
apps/web-band/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-band/src/pages/[dtag].tsx
apps/web-band/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-band/src/pages/_document.tsx
apps/web-band/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-band/src/pages/params/index.tsx
apps/web-band/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-band/src/pages/server-sitemap.xml/index.tsx
apps/web-band/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-band/src/pages/validators/[address].tsx
apps/web-band/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-band/src/pages/validators/index.tsx
apps/web-band/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-band/src/pages/proposals/index.tsx
apps/web-band/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-band/src/pages/proposals/[id].tsx
apps/web-band/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-band/src/pages/blocks/index.tsx
apps/web-band/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-band/src/pages/blocks/[height].tsx
apps/web-band/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-band/src/pages/accounts/[address].tsx
apps/web-band/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-band/src/pages/transactions/index.tsx
apps/web-band/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-band/src/pages/transactions/[tx].tsx
apps/web-band/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-band/src/components/nav/components/title_bar/styles.ts
apps/web-band/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-band/src/components/nav/components/desktop/index.tsx
apps/web-band/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
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/components/msg/utils.tsx
apps/web-band/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 { ComponentProps, 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-band/src/components/msg/index.ts
apps/web-band/src/components/msg/index.ts
// ========================= // msg components // ========================= export { default as Activate } from '@/components/msg/oracle/activate'; export { default as CreateDataSource } from '@/components/msg/oracle/create_data_source'; export { default as CreateOracleScript } from '@/components/msg/oracle/create_orac...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/components/msg/oracle/add_reporter/index.test.tsx
apps/web-band/src/components/msg/oracle/add_reporter/index.test.tsx
import renderer from 'react-test-renderer'; import AddReporter from '@/components/msg/oracle/add_reporter'; import MsgAddReporter from '@/models/msg/oracle/msg_add_reporter'; 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-band/src/components/msg/oracle/add_reporter/index.tsx
apps/web-band/src/components/msg/oracle/add_reporter/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import MsgAddReporter from '@/models/msg/oracle/msg_add_reporter'; import Name from '@/components/name'; const AddReporter: 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-band/src/components/msg/oracle/remove_reporter/index.test.tsx
apps/web-band/src/components/msg/oracle/remove_reporter/index.test.tsx
import renderer from 'react-test-renderer'; import RemoveReporter from '@/components/msg/oracle/remove_reporter'; import MsgRemoveReporter from '@/models/msg/oracle/msg_remove_reporter'; 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-band/src/components/msg/oracle/remove_reporter/index.tsx
apps/web-band/src/components/msg/oracle/remove_reporter/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; import MsgRemoveReporter from '@/models/msg/oracle/msg_remove_reporter'; import Name from '@/components/name'; const RemoveReporter: 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-band/src/components/msg/oracle/edit_oracle_script/index.test.tsx
apps/web-band/src/components/msg/oracle/edit_oracle_script/index.test.tsx
import renderer from 'react-test-renderer'; import EditOracleScript from '@/components/msg/oracle/edit_oracle_script'; import MsgEditOracleScript from '@/models/msg/oracle/msg_edit_oracle_script'; 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-band/src/components/msg/oracle/edit_oracle_script/index.tsx
apps/web-band/src/components/msg/oracle/edit_oracle_script/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgEditOracleScript from '@/models/msg/oracle/msg_edit_oracle_script'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const EditOracleSc...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/components/msg/oracle/create_data_source/index.test.tsx
apps/web-band/src/components/msg/oracle/create_data_source/index.test.tsx
import renderer from 'react-test-renderer'; import CreateDataSource from '@/components/msg/oracle/create_data_source'; import MsgCreateDataSource from '@/models/msg/oracle/msg_create_data_source'; 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-band/src/components/msg/oracle/create_data_source/index.tsx
apps/web-band/src/components/msg/oracle/create_data_source/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgCreateDataSource from '@/models/msg/oracle/msg_create_data_source'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const CreateDataSo...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/components/msg/oracle/activate/index.test.tsx
apps/web-band/src/components/msg/oracle/activate/index.test.tsx
import renderer from 'react-test-renderer'; import Activate from '@/components/msg/oracle/activate'; import MsgActivate from '@/models/msg/oracle/msg_activate'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/components/...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/components/msg/oracle/activate/index.tsx
apps/web-band/src/components/msg/oracle/activate/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgActivate from '@/models/msg/oracle/msg_activate'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const Activate: FC<{ message: MsgAct...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/components/msg/oracle/request_data/index.test.tsx
apps/web-band/src/components/msg/oracle/request_data/index.test.tsx
import renderer from 'react-test-renderer'; import RequestData from '@/components/msg/oracle/request_data'; import MsgRequestData from '@/models/msg/oracle/msg_request_data'; 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-band/src/components/msg/oracle/request_data/index.tsx
apps/web-band/src/components/msg/oracle/request_data/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 MsgRequestData from '@/models/msg/oracle/msg_request_data'; 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-band/src/components/msg/oracle/create_oracle_script/index.test.tsx
apps/web-band/src/components/msg/oracle/create_oracle_script/index.test.tsx
import renderer from 'react-test-renderer'; import CreateOracleScript from '@/components/msg/oracle/create_oracle_script'; import MsgCreateOracleScript from '@/models/msg/oracle/msg_create_oracle_script'; 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-band/src/components/msg/oracle/create_oracle_script/index.tsx
apps/web-band/src/components/msg/oracle/create_oracle_script/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgCreateOracleScript from '@/models/msg/oracle/msg_create_oracle_script'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const CreateOr...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/components/msg/oracle/report_data/index.test.tsx
apps/web-band/src/components/msg/oracle/report_data/index.test.tsx
import renderer from 'react-test-renderer'; import ReportData from '@/components/msg/oracle/report_data'; import MsgReportData from '@/models/msg/oracle/msg_report_data'; import MockTheme from '@/tests/mocks/MockTheme'; // ================================== // mocks // ================================== jest.mock('@/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-band/src/components/msg/oracle/report_data/index.tsx
apps/web-band/src/components/msg/oracle/report_data/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 MsgReportData from '@/models/msg/oracle/msg_report_data'; 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-band/src/components/msg/oracle/edit_data_source/index.test.tsx
apps/web-band/src/components/msg/oracle/edit_data_source/index.test.tsx
import renderer from 'react-test-renderer'; import CreateDataSource from '@/components/msg/oracle/edit_data_source'; import MsgEditDataSource from '@/models/msg/oracle/msg_edit_data_source'; 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-band/src/components/msg/oracle/edit_data_source/index.tsx
apps/web-band/src/components/msg/oracle/edit_data_source/index.tsx
import Typography from '@mui/material/Typography'; import AppTrans from '@/components/AppTrans'; import { FC } from 'react'; import Name from '@/components/name'; import MsgEditDataSource from '@/models/msg/oracle/msg_edit_data_source'; import { useProfileRecoil } from '@/recoil/profiles/hooks'; const EditDataSource: ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/models/oracle_params.ts
apps/web-band/src/models/oracle_params.ts
import * as R from 'ramda'; class OracleParams { public maxAskCount: number; public baseOwsmGas: number; public maxCalldataSize: number; public samplingTryCount: number; public maxReportDataSize: number; public maxRawRequestCount: number; public expirationBlockCount: number; public oracleRewardP...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/models/index.ts
apps/web-band/src/models/index.ts
// ================================ // Transaction Message Types // ================================ export { default as MsgActivate } from '@/models/msg/oracle/msg_activate'; export { default as MsgCreateDataSource } from '@/models/msg/oracle/msg_create_data_source'; export { default as MsgCreateOracleScript } 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-band/src/models/msg/types.ts
apps/web-band/src/models/msg/types.ts
import type { BaseCategories, Log } from 'ui/models/msg/types'; export type CustomCategories = 'oracle'; // 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-band/src/models/msg/oracle/msg_activate.ts
apps/web-band/src/models/msg/oracle/msg_activate.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgActivate { public category: Categories; public type: string; public json: object; public validator: string; constructor(payload: object) { this.category = 'oracle'; this.json = R.pathOr({}, ['json'], 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-band/src/models/msg/oracle/msg_add_reporter.ts
apps/web-band/src/models/msg/oracle/msg_add_reporter.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgAddReporter { public category: Categories; public type: string; public json: object; public validatorAddress: string; public reporterAddress: string; constructor(payload: object) { this.category = 'oracle'; ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/models/msg/oracle/msg_request_data.ts
apps/web-band/src/models/msg/oracle/msg_request_data.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgRequestData { public category: Categories; public type: string; public json: object; public oracleScriptId: number; // public calldata: object; // public askCount: number; // public minCount: number; // publi...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/models/msg/oracle/msg_report_data.ts
apps/web-band/src/models/msg/oracle/msg_report_data.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgReportData { public category: Categories; public type: string; public json: object; public requestId: number; // public rawReports: Array<{ // externalId: number; // exitCode: number; // data: object; ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/models/msg/oracle/msg_create_oracle_script.ts
apps/web-band/src/models/msg/oracle/msg_create_oracle_script.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgCreateOracleScript { public category: Categories; public type: string; public json: object; public name: string; public description: string; public schema: string; public sourceCodeUrl: string; public code...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/models/msg/oracle/msg_remove_reporter.ts
apps/web-band/src/models/msg/oracle/msg_remove_reporter.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgRemoveReporter { public category: Categories; public type: string; public json: object; public validatorAddress: string; public reporterAddress: string; constructor(payload: object) { this.category = 'oracle...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/models/msg/oracle/msg_edit_data_source.ts
apps/web-band/src/models/msg/oracle/msg_edit_data_source.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgEditDataSource { public category: Categories; public type: string; public json: object; public dataSourceId: number; public name: string; public description: string; public executable: object; public fee: ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/models/msg/oracle/msg_edit_oracle_script.ts
apps/web-band/src/models/msg/oracle/msg_edit_oracle_script.ts
import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgEditOracleScript { public category: Categories; public type: string; public json: object; public oracleScriptId: number; public name: string; public description: string; public schema: string; public sourc...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/models/msg/oracle/msg_create_data_source.ts
apps/web-band/src/models/msg/oracle/msg_create_data_source.ts
// import * as R from 'ramda'; import * as R from 'ramda'; import type { Categories } from '@/models/msg/types'; class MsgCreateDataSource { public category: Categories; public type: string; public json: object; public name: string; // public description: string; // public executable: object; // publ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/screens/params/index.tsx
apps/web-band/src/screens/params/index.tsx
import BoxDetails from '@/components/box_details'; import Layout from '@/components/layout'; import LoadAndExist from '@/components/load_and_exist'; import useAppTranslation from '@/hooks/useAppTranslation'; import { useParams } from '@/screens/params/hooks'; import useStyles from '@/screens/params/styles'; import { ...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/screens/params/utils.tsx
apps/web-band/src/screens/params/utils.tsx
import type { Distribution, Gov, Minting, Oracle, 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: number, t: TFunction) => { co...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/screens/params/types.ts
apps/web-band/src/screens/params/types.ts
import OracleParams from '@/models/oracle_params'; export interface Staking { bondDenom: string; unbondingTime: number; maxEntries: number; historicalEntries: number; maxValidators: number; } export interface Slashing { downtimeJailDuration: number; minSignedPerWindow: number; signedBlockWindow: numbe...
typescript
Apache-2.0
de058820eacedc2e9cbe82ad7fec8239faedeeff
2026-01-05T04:51:16.060495Z
false
forbole/big-dipper-2.0-cosmos
https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-band/src/screens/params/hooks.ts
apps/web-band/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