mirror of
https://github.com/luxfi/explore.git
synced 2026-07-27 05:54:15 +00:00
Single version policy: ghcr.io/hanzoai/sql:latest everywhere. No version pinning, no backwards compat, always latest stable.
23 lines
666 B
TypeScript
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';
|