Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 19x 19x 19x 19x 6x | import { CreateHttpProviderConfig, createHttpProvider } from '../HttpProvider';
import { HttpProviderConfigPaths, NetworkInfoProvider } from '@cardano-sdk/core';
import { apiVersion } from '../version';
/** The NetworkInfoProvider endpoint paths. */
const paths: HttpProviderConfigPaths<NetworkInfoProvider> = {
eraSummaries: '/era-summaries',
genesisParameters: '/genesis-parameters',
healthCheck: '/health',
ledgerTip: '/ledger-tip',
lovelaceSupply: '/lovelace-supply',
protocolParameters: '/protocol-parameters',
stake: '/stake'
};
/**
* Connect to a Cardano Services HttpServer instance with the service available
*
* @param config The configuration object fot the NetworkInfoProvider Provider.
*/
export const networkInfoHttpProvider = (config: CreateHttpProviderConfig<NetworkInfoProvider>): NetworkInfoProvider =>
createHttpProvider<NetworkInfoProvider>({
...config,
apiVersion: config.apiVersion || apiVersion.networkInfo,
paths,
serviceSlug: 'network-info'
});
|