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 | 11x 11x 11x 11x 2x | import { AssetProvider, HttpProviderConfigPaths } from '@cardano-sdk/core'; import { CreateHttpProviderConfig, createHttpProvider } from '../HttpProvider'; import { apiVersion } from '../version'; /** The AssetProvider endpoint paths. */ const paths: HttpProviderConfigPaths<AssetProvider> = { getAsset: '/get-asset', getAssets: '/get-assets', healthCheck: '/health' }; /** * Connect to a Cardano Services HttpServer instance with the service available * * @param config The configuration object fot the AssetProvider Provider. */ export const assetInfoHttpProvider = (config: CreateHttpProviderConfig<AssetProvider>): AssetProvider => createHttpProvider<AssetProvider>({ ...config, apiVersion: config.apiVersion || apiVersion.assetInfo, paths, serviceSlug: 'asset' }); |