Files
explore/lib/api/pchain/index.ts
T
Hanzo Dev 66f33743d7 unify all sql images to :latest (PG18)
Single version policy: ghcr.io/hanzoai/sql:latest everywhere.
No version pinning, no backwards compat, always latest stable.
2026-03-01 21:09:09 -08:00

23 lines
666 B
TypeScript

// P-chain API hooks and types.
export { getPChain, getInfo, getHealth } from './client';
export { useCurrentValidators } from './useCurrentValidators';
export { useBlockchains } from './useBlockchains';
export { useSubnets } from './useSubnets';
export { useChainHeights } from './useChainHeights';
export type {
PChainValidator,
PChainDelegator,
PChainRewardOwner,
PChainBlockchain,
PChainSubnet,
GetCurrentValidatorsResponse,
GetBlockchainsResponse,
GetSubnetsResponse,
ValidatorStats,
} from './types';
export type { UseCurrentValidatorsResult } from './useCurrentValidators';
export type { UseChainHeightsResult } from './useChainHeights';